
  :root {
    --primary: #1a5276;
    --secondary: #2e86c1;
    --accent: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  section {
    position: relative;
    padding: 4rem 0;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
  }

  h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
  }

  /* Hero Section */
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary);
    overflow: hidden;
  }

  .hero-section .bg-image {
    opacity: 0.2;
  }

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

  .hero-section h1 {
    color: var(--text-light);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Our Story Section */
  .our-story {
    background-color: var(--light);
  }

  .story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .story-text {
    flex: 1;
  }

  .story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

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

  /* Our Mission Section */
  .our-mission {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5rem 0;
  }

  .our-mission h2 {
    color: var(--text-light);
    text-align: center;
  }

  .mission-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .mission-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .mission-card h3 {
    color: var(--text-light);
  }

  .mission-card p {
    color: var(--text-light);
  }

  .mission-card a {
    color: var(--accent);
    text-decoration: underline;
  }

  /* Our Team Section */
  .our-team {
    background-color: var(--background);
  }

  .team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
  }

  .team-member:hover {
    transform: translateY(-5px);
  }

  .team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .team-member h3, .team-member p {
    padding: 0 1.5rem;
  }

  .team-member h3 {
    margin-top: 1.5rem;
  }

  .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .team-member p:last-child {
    padding-bottom: 1.5rem;
  }

  /* Testimonials Section */
  .testimonials {
    background-color: var(--light);
    padding: 5rem 0;
  }

  .testimonials h2 {
    text-align: center;
  }

  .testimonial-slider {
    position: relative;
    overflow: hidden;
  }

  .testimonial {
    padding: 1rem;
  }

  .testimonial-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
  }

  .testimonial-content i {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }

  .testimonial-content p {
    margin-left: 2rem;
    font-style: italic;
  }

  .testimonial-author {
    text-align: right;
    font-weight: bold;
    color: var(--secondary);
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  .prev-btn, .next-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }

  .prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary);
  }

  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 6rem 0;
    background-color: var(--dark);
    color: var(--text-light);
  }

  .cta-section h2 {
    color: var(--text-light);
  }

  .cta-section p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
  }

  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    .story-content {
      flex-direction: row;
      align-items: center;
    }

    .mission-cards {
      grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .testimonial {
      flex: 0 0 80%;
      scroll-snap-align: center;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }

    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .testimonial {
      flex: 0 0 33.333%;
    }
  }
