
  :root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333333;
    --background: #ffffff;
    --section-padding: 5rem 0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--dark);
  }
  
  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light);
  }
  
  h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 8rem 0;
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
    overflow: hidden;
  }
  
  .hero-section .bg-image {
    opacity: 0.3;
  }
  
  .hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light);
  }
  
  /* Our Story Section */
  .our-story {
    padding: var(--section-padding);
    background-color: var(--background);
  }
  
  .our-story .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .story-content {
    flex: 1;
  }
  
  .story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Our Mission Section */
  .our-mission {
    padding: var(--section-padding);
    background-color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .mission-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .mission-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-10px);
  }
  
  .mission-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
  }
  
  /* Our Team Section */
  .our-team {
    padding: var(--section-padding);
    background-color: var(--background);
  }
  
  .team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .team-members {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .team-member {
    text-align: center;
  }
  
  .team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: var(--section-padding);
    background-color: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials h2 {
    color: var(--light);
  }
  
  .testimonials h2:after {
    background-color: var(--light);
  }
  
  .testimonial-slider {
    position: relative;
    height: 250px;
    margin: 2rem 0;
  }
  
  .testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-slide.active {
    opacity: 1;
  }
  
  .testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
  }
  
  .testimonial-content i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
  }
  
  .client-name {
    font-weight: 600;
    font-style: italic;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .prev-testimonial, .next-testimonial {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .testimonial-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
  }
  
  .dot.active {
    background-color: var(--light);
  }
  
  /* CTA Section */
  .cta-section {
    padding: var(--section-padding);
    background-color: var(--light);
    text-align: center;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 463px;
    margin: 2rem auto 0;
  }
  
  .btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: var(--secondary);
    color: var(--light);
  }
  
  .btn-primary:hover {
    background-color: #2980b9;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
  }
  
  .btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--light);
  }
  
  /* Screen Reader Only */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    h1 {
      font-size: 3rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
    
    .our-story .container {
      flex-direction: row;
      align-items: center;
    }
    
    .mission-cards {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .mission-card {
      flex: 1;
    }
    
    .team-members {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .team-member {
      flex: 0 0 30%;
    }
    
    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  @media (min-width: 1024px) {
    h1 {
      font-size: 3.5rem;
    }
    
    .hero-text {
      font-size: 1.3rem;
    }
  }
