
  :root {
    --primary: #3a4e5c;
    --secondary: #e8a87c;
    --accent: #f2d0a4;
    --light: #f8f4e3;
    --dark: #1d2b35;
    --text: #333333;
    --background: #ffffff;
    --error: #d64545;
    --success: #3e8914;
  }

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

  body {
    font-family: 'Roboto', 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-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

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

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

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

  p {
    margin-bottom: 1.5rem;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: var(--secondary);
  }

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

  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
    overflow: hidden;
  }

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

  .hero-section h1 {
    color: var(--light);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--light);
  }

  /* Our Story Section */
  .our-story {
    padding: 80px 0;
    background-color: var(--background);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  .story-content {
    max-width: 600px;
  }

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

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

  /* Values Section */
  .values-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--light);
    text-align: center;
  }

  .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }

  .value-card {
    background-color: var(--background);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

  .value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
  }

  .value-card h3 {
    margin-bottom: 15px;
  }

  .value-card p {
    margin-bottom: 0;
  }

  /* Team Section */
  .team-section {
    padding: 80px 0;
    background-color: var(--background);
    text-align: center;
  }

  .team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
  }

  .team-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-member {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

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

  .member-photo {
    height: 250px;
    overflow: hidden;
  }

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

  .team-member:hover .member-photo img {
    transform: scale(1.05);
  }

  .team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
  }

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

  .team-member p:not(.position) {
    padding: 0 20px 20px;
    margin-bottom: 0;
  }

  /* Testimonials Section */
  .testimonials {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
  }

  .testimonials h2 {
    color: var(--light);
  }

  .testimonials h2:after {
    background-color: var(--accent);
  }

  .testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 30px;
    overflow: hidden;
  }

  .testimonial {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 auto;
  }

  .quote {
    position: relative;
    padding: 20px 40px;
  }

  .quote i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
  }

  .quote i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--accent);
    font-size: 1.5rem;
  }

  .quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .author {
    margin-top: 20px;
  }

  .author .name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .author .city {
    font-style: italic;
    margin-bottom: 0;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

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

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

  /* CTA Section */
  .cta-section {
    padding: 80px 0;
    background-color: var(--accent);
    text-align: center;
  }

  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary);
    color: var(--light);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: var(--dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* 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 Styles */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
    
    .story-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .team-members {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }
    
    .values-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .team-members {
      grid-template-columns: repeat(3, 1fr);
    }
  }
