
  /* Base styles from theme */
  :root {
      --primary: #15803d;
      --primary-dark: #0c5a2a;
      --secondary: #f8f9fa;
      --accent: #ffa500;
      --text: #333;
      --text-light: #6c757d;
      --white: #ffffff;
      --transition: all 0.3s ease;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
  }

  html {
      font-size: 62.5%;
      scroll-behavior: smooth;
      overflow-x: hidden;
  }

  body {
      background-color: var(--white);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      color: var(--primary);
  }

  .heading {
      font-size: 4.5rem;
      font-weight: 700;
      text-align: center;
      margin: 4rem 0 2rem;
      position: relative;
  }

  .heading::after {
      content: '';
      display: block;
      width: 120px;
      height: 5px;
      background: var(--primary);
      margin: 15px auto;
      border-radius: 3px;
  }

  p {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--text-light);
  }

  .btn {
      display: inline-block;
      padding: 1.2rem 2.5rem;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 5px;
      font-size: 1.8rem;
      font-weight: 500;
      text-transform: uppercase;
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      margin-top: 2rem;
  }

  .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dt-divider-orange {
      display: block;
      width: 100px;
      height: 4px;
      background: var(--accent);
      margin: 0 auto 3rem;
      border-radius: 2px;
  }

  /* Hero Section */
  .hero {
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1580502304784-8985b7eb7260?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
  }

  .hero-content {
      max-width: 800px;
      padding: 0 2rem;
      z-index: 1;
  }

  .hero h1 {
      font-size: 5.5rem;
      color: var(--white);
      margin-bottom: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero p {
      font-size: 2.2rem;
      color: var(--white);
      margin-bottom: 3rem;
  }

  .controls {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
  }

  .vid-btn {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
  }

  .vid-btn.active {
      background: var(--primary);
  }

  /* About Page Specific Styles - Enhanced */
  .apropos-section {
      padding: 8rem 0;
      background-color: var(--white);
  }

  .apropos-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 5rem;
  }

  .apropos-text {
      flex: 1;
      min-width: 300px;
  }

  .apropos-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
      position: relative;
  }

  .apropos-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }

  .apropos-image img:hover {
      transform: scale(1.03);
  }

  .apropos-section h1 {
      font-size: 4.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
      position: relative;
      text-align: center;
  }

  .apropos-section h1::after {
      content: '';
      display: block;
      width: 100px;
      height: 5px;
      background: var(--primary);
      margin: 15px auto 30px;
      border-radius: 3px;
  }

  .aboutP {
      font-size: 1.8rem;
      line-height: 1.8;
      margin-bottom: 3rem;
      color: var(--text-light);
  }

  .aboutP span {
      color: var(--primary);
      font-weight: 700;
  }

  .mission-values {
      background: var(--secondary);
      border-radius: 10px;
      padding: 2.5rem;
      margin-top: 3rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .mission-values h3 {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .mission-values h3 i {
      color: var(--accent);
  }

  .mission-values p {
      padding-left: 3rem;
      font-size: 1.7rem;
  }

  .administration-section {
      padding: 8rem 0;
      background-color: var(--secondary);
  }

  .administration-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .administration-section h1 {
      font-size: 4.5rem;
      margin-bottom: 3rem;
      color: var(--primary);
      position: relative;
      text-align: center;
  }

  .administration-section h1::after {
      content: '';
      display: block;
      width: 100px;
      height: 5px;
      background: var(--primary);
      margin: 15px auto 40px;
      border-radius: 3px;
  }

  .administration-content {
      display: flex;
      flex-wrap: wrap;
      gap: 4rem;
  }

  .administration-text {
      flex: 1;
      min-width: 300px;
      font-size: 1.8rem;
      line-height: 1.8;
      color: var(--text-light);
  }

  .stats {
      display: flex;
      justify-content: space-around;
      margin-top: 3rem;
      text-align: center;
  }

  .stat-item {
      padding: 1.5rem;
  }

  .stat-item h3 {
      font-size: 3.5rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
  }

  .stat-item p {
      font-size: 1.6rem;
      margin: 0;
  }

  .administration-grid {
      flex: 1;
      min-width: 300px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 3rem;
  }

  .team-member {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      position: relative;
  }

  .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }

  .member-image {
      height: 200px;
      overflow: hidden;
      position: relative;
  }

  .member-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
      z-index: 1;
  }

  .member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .team-member:hover .member-image img {
      transform: scale(1.1);
  }

  .member-info {
      padding: 2rem;
      text-align: center;
      position: relative;
      z-index: 2;
  }

  .member-info h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-size: 2rem;
  }

  .member-info p {
      color: var(--text-light);
      font-size: 1.6rem;
      margin-bottom: 1rem;
  }

  .social {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 1rem;
  }

  .social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      transition: var(--transition);
  }

  .social a:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
  }

  /* Values Section */
  .values-section {
      padding: 8rem 0;
      background: var(--white);
  }

  .values-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 5rem;
  }

  .value-card {
      background: var(--secondary);
      padding: 3rem;
      border-radius: 10px;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  .value-icon {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      color: white;
      font-size: 3rem;
  }

  .value-card h3 {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
  }

  /* Timeline */
  .timeline-section {
      padding: 8rem 0;
      background: var(--secondary);
  }

  .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
  }

  .timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: var(--primary);
      transform: translateX(-50%);
  }

  .timeline-item {
      position: relative;
      margin-bottom: 5rem;
      width: 45%;
  }

  .timeline-item:nth-child(odd) {
      left: 0;
  }

  .timeline-item:nth-child(even) {
      left: 55%;
  }

  .timeline-content {
      background: white;
      padding: 3rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
  }

  .timeline-content::before {
      content: '';
      position: absolute;
      top: 30px;
      right: -15px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 15px 0 15px 15px;
      border-color: transparent transparent transparent white;
  }

  .timeline-item:nth-child(even) .timeline-content::before {
      left: -15px;
      right: auto;
      border-width: 15px 15px 15px 0;
      border-color: transparent white transparent transparent;
  }

  .timeline-year {
      position: absolute;
      top: 20px;
      background: var(--primary);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
  }

  .timeline-item:nth-child(odd) .timeline-year {
      right: -80px;
  }

  .timeline-item:nth-child(even) .timeline-year {
      left: -80px;
  }

  .timeline-content h3 {
      margin-bottom: 1.5rem;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      html {
          font-size: 58%;
      }
      
      .apropos-container,
      .administration-content {
          flex-direction: column;
      }
      
      .apropos-text,
      .apropos-image,
      .administration-text,
      .administration-grid {
          width: 100%;
      }
      
      .timeline-container::before {
          left: 30px;
      }
      
      .timeline-item {
          width: 100%;
          padding-left: 70px;
          padding-right: 0;
          left: 0 !important;
      }
      
      .timeline-item:nth-child(even) .timeline-content::before {
          left: -15px;
          right: auto;
          border-width: 15px 15px 15px 0;
          border-color: transparent white transparent transparent;
      }
      
      .timeline-item:nth-child(odd) .timeline-year,
      .timeline-item:nth-child(even) .timeline-year {
          left: 0;
          right: auto;
      }

      .hero h1 {
          font-size: 4.5rem;
      }

      .hero p {
          font-size: 2rem;
      }

      .heading {
          font-size: 3.5rem;
      }
      
      .apropos-section h1,
      .administration-section h1 {
          font-size: 3.5rem;
      }
  }

  @media (max-width: 768px) {
      .stats {
          flex-direction: column;
          gap: 1.5rem;
      }
      
      .timeline-content::before {
          display: none;
      }
  }

  @media (max-width: 576px) {
      .hero h1 {
          font-size: 3.8rem;
      }
      
      .apropos-section h1,
      .administration-section h1 {
          font-size: 3rem;
      }
      
      .administration-grid {
          grid-template-columns: 1fr;
      }
  }
