:root {
    --sage-green: #7D9D8C;
    --sage-green-light: #A4C1B0;
    --sage-green-dark: #5A7267;
    --cream: #F8F6F0;
    --cream-darker: #EAE7DD;
    --text-dark: #333333;
    --text-light: #666666;
    --accent: #FF9A3C;
    --accent-light: #FFB673;
    --accent-dark: #E87711;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-800: #424242;
    --white: #FFFFFF;
    --drop-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    --transition: all 0.3s ease;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .section {
    padding: 5rem 0;
  }

  /* Navbar Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }

  .header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sage-green-dark);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--sage-green);
  }

  .btn {
    display: inline-block;
    background-color: var(--sage-green);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
  }

  .btn:hover {
    background-color: var(--sage-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(90, 114, 103, 0.3);
  }

  .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--sage-green);
    color: var(--sage-green);
  }

  .btn-secondary:hover {
    background-color: var(--sage-green-light);
    color: var(--white);
  }

  .btn-accent {
    background-color: var(--accent);
    color: var(--white);
  }

  .btn-accent:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(232, 119, 17, 0.3);
  }

  .btn-mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
  }

  /* Hero Section */
  .hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--sage-green-light) 0%, var(--sage-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1600/900') center/cover;
    opacity: 0.15;
    pointer-events: none;
  }

  .hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
  }

  .hero-text {
    flex: 1;
    max-width: 600px;
  }

  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-image {
    flex: 1;
    position: relative;
  }

  .hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
  }

  .hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 20px;
    transform: rotate(-5deg);
    bottom: -20px;
    right: -20px;
    z-index: 1;
  }

  .trusted-by {
    margin-top: 5rem;
    text-align: center;
  }

  .trusted-by h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }

  .trusted-logo {
    opacity: 0.7;
    transition: var(--transition);
    max-height: 40px;
  }

  .trusted-logo:hover {
    opacity: 1;
  }

  /* Services Section */
  .section-heading {
    text-align: center;
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
    color: var(--sage-green-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
  }

  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }

  .service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--drop-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .service-image {
    height: 200px;
    overflow: hidden;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .service-card:hover .service-image img {
    transform: scale(1.1);
  }

  .service-content {
    padding: 2rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage-green-light);
    margin-bottom: 1.5rem;
    color: var(--white);
  }

  .service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sage-green-dark);
  }

  .service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--sage-green);
    font-weight: 600;
    gap: 0.5rem;
  }

  .service-link:hover {
    color: var(--sage-green-dark);
  }

  /* Features Section */
  .features {
    background-color: var(--cream);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--drop-shadow);
    text-align: center;
    transition: var(--transition);
  }

  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--sage-green-dark);
  }

  .feature-text {
    color: var(--text-light);
  }

  /* About Section */
  .about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
  }

  .about-image {
    flex: 1;
    position: relative;
  }

  .about-image img {
    border-radius: 15px;
    box-shadow: var(--drop-shadow);
    position: relative;
    z-index: 10;
  }

  .about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage-green);
    border-radius: 15px;
    top: 20px;
    right: -20px;
    z-index: 1;
  }

  .about-text {
    flex: 1;
  }

  .about-title {
    font-size: 2.5rem;
    color: var(--sage-green-dark);
    margin-bottom: 1.5rem;
  }

  .about-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1rem;
    color: var(--text-light);
  }

  /* Testimonials */
  .testimonials {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1600/900') center/cover;
    opacity: 0.05;
    pointer-events: none;
  }

  .testimonials-wrapper {
    display: flex;
    gap: 2rem;
    position: relative;
  }

  .testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--drop-shadow);
    flex: 1;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--sage-green-light);
    opacity: 0.2;
    font-family: 'Georgia', serif;
    line-height: 1;
  }

  .testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    z-index: 10;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--sage-green-dark);
  }

  .testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-light);
  }

  /* FAQ Section */
  .faq-section {
    background-color: var(--white);
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    overflow: hidden;
  }

  .faq-question {
    padding: 1.5rem;
    background-color: var(--gray-100);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--white);
  }

  .faq-answer.active {
    padding: 1.5rem;
    max-height: 1000px;
  }

  /* CTA Section */
  .cta {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/1600/900') center/cover;
    opacity: 0.1;
    pointer-events: none;
  }

  .cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
  }

  .cta .btn {
    background-color: var(--white);
    color: var(--sage-green-dark);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }

  .cta .btn:hover {
    background-color: var(--cream);
  }

  /* Footer */
  .footer {
    background-color: var(--sage-green-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-company h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-company p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }

  .footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
  }

  .footer-links ul {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
  }

  .footer-contact {
    color: rgba(255, 255, 255, 0.7);
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 0.3rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
  }

  .social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }

  /* Media Queries */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3rem;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 992px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }

    .hero-btns {
      justify-content: center;
    }

    .about-content {
      flex-direction: column-reverse;
      text-align: center;
    }

    .about-text {
      text-align: center;
    }

    .about-image::before {
      right: 0;
    }

    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-wrapper {
      flex-direction: column;
    }
  }

  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--white);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 2rem;
      transition: 0.4s;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
      left: 0;
    }

    .nav-list {
      flex-direction: column;
      width: 100%;
      text-align: center;
    }

    .nav-item {
      margin: 1.5rem 0;
    }

    .btn-mobile-menu {
      display: block;
    }

    .hero-title {
      font-size: 2.5rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }

    .about-stats {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }