* {
    box-sizing: border-box;
}

.home {
    background-color: rgba(242, 242, 242, 1);
    overflow: hidden;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  /* Header Styles */
  .main-header {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    width: 100%;
    padding: 16px 60px;
    align-items: center;
    gap: 40px 100px;
    overflow: hidden;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .main-header {
      max-width: 100%;
      padding: 16px 20px;
    }
  }
  
  .logo {
    color: rgba(92, 107, 10, 1);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: stretch;
    margin: auto 0;
  }
  
  .main-nav {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    align-items: center;
    gap: 40px;
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .main-nav {
      max-width: 100%;
    }
  }
  
  .nav-link {
    align-self: stretch;
    margin: auto 0;
    text-decoration: none;
    color: inherit;
  }
  
  /* Hero Section Styles */
  .hero-section {
    position: relative;
    width: 100%;
    padding: 80px 60px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/hero-bg.png');
  }
  
  @media (max-width: 991px) {
    .hero-section {
      max-width: 100%;
      padding: 80px 20px;
    }
  }
  
  @media (max-width: 991px) {
    .hero-image {
      max-width: 100%;
    }
  }

  .main-section {
    background: #fff;
    padding: 60px;
  }

  .thx-section {
    text-align: center;
    background: #fff;
    padding: 60px;
  }
  
  @media (max-width: 640px) {
    .hero-image {
      height: 942px;
      top: -151px;
      left: 0;
    }
  }
  
  .hero-content {
    z-index: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
  }
  
  @media (max-width: 991px) {
    .hero-content {
      max-width: 100%;
    }
  }
  
  .hero-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  
  @media (max-width: 991px) {
    .hero-title {
      max-width: 100%;
      font-size: 40px;
    }
  }
  
  .hero-description {
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
  }
  
  @media (max-width: 991px) {
    .hero-description {
      max-width: 100%;
    }
  }
  
  .cta-button {
    align-self: center;
    border-radius: 10px;
    background-color: rgba(92, 107, 10, 1);
    color: #fff;
    margin-top: 20px;
    padding: 18px 40px;
    gap: 10px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
  }

  .popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 40px 60px;
    z-index: 999;
    background: #fff;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }

.popup-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
}

.popup-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.popup-btns .submit-button {
    width: auto;
    flex: none;
}
  
  @media (max-width: 991px) {
    .cta-button {
      padding: 18px 20px;
    }
  }
  
  /* About Section Styles */
  .about-section {
    background-color: rgba(242, 242, 242, 1);
    width: 100%;
    padding: 60px;
  }
  
  @media (max-width: 991px) {
    .about-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .about-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px;
    color: rgba(0, 0, 0, 1);
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .about-content {
      max-width: 100%;
    }
  }
  
  .about-image {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 400px;
    border-radius: 20px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
  }
  
  .about-text {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  @media (max-width: 991px) {
    .about-text {
      max-width: 100%;
    }
  }
  
  .about-title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  @media (max-width: 991px) {
    .about-title {
      max-width: 100%;
    }
  }
  
  .about-description {
    font-size: 20px;
    font-weight: 400;
    margin-top: 40px;
  }
  
  @media (max-width: 991px) {
    .about-description {
      max-width: 100%;
    }
  }
  
  .stats-container {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: start;
    gap: 40px;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .stats-container {
      max-width: 100%;
      flex-direction: column;
    }
  }
  
  .stat-item {
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  .stat-number {
    color: rgba(92, 107, 10, 1);
    font-size: 28px;
    font-weight: 600;
  }
  
  .stat-text {
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
  }
  
  /* Team Section Styles */
  .team-section {
    background-color: rgba(242, 242, 242, 1);
    display: flex;
    width: 100%;
    padding: 60px;
    flex-direction: column;
    align-items: stretch;
    color: rgba(0, 0, 0, 1);
    justify-content: center;
  }
  
  @media (max-width: 991px) {
    .team-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .team-container {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 10px;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .team-container {
      max-width: 100%;
    }
  }
  
  .team-intro {
    min-width: 240px;
    width: 297px;
  }
  
  .section-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
  }
  
  .team-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    margin-top: 20px;
  }
  
  .team-members {
    display: flex;
    min-width: 240px;
    align-items: start;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  @media (max-width: 991px) {
    .team-members {
      max-width: 100%;
    }
  }
  
  .team-member {
    min-width: 240px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  .member-name {
    font-size: 20px;
    font-weight: 600;
  }
  
  .member-image {
    aspect-ratio: 1.22;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 20px;
    margin-top: 10px;
  }
  
  .member-bio {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
  }
  
  /* Services Section Styles */
  .services-section {
    background-color: rgba(242, 242, 242, 1);
    width: 100%;
    padding: 60px;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    .services-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    width: 100%;
    align-items: stretch;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .services-container {
      max-width: 100%;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  .service-card {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    padding: 27px 10px;
    align-items: center;
    gap: 10px;
    justify-content: start;
    text-align: center;
    height: 100%;
  }
  
  .service-content {
    width: 100%;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  .service-title {
    color: rgba(92, 107, 10, 1);
    font-size: 24px;
    font-weight: 600;
  }
  
  .service-description {
    color: rgba(0, 0, 0, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 20px;
  }
  
  /* Process Section Styles */
  .process-section {
    background-color: rgba(242, 242, 242, 1);
    display: flex;
    width: 100%;
    padding: 60px;
    align-items: center;
    gap: 40px;
    color: rgba(0, 0, 0, 1);
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .process-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .process-content {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin: auto 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  @media (max-width: 991px) {
    .process-content {
      max-width: 100%;
    }
  }
  
  .process-description {
    font-size: 20px;
    font-weight: 400;
    margin-top: 40px;
  }
  
  @media (max-width: 991px) {
    .process-description {
      max-width: 100%;
    }
  }
  
  .process-image {
    aspect-ratio: 0.92;
    object-fit: contain;
    object-position: center;
    width: 400px;
    border-radius: 20px;
    align-self: stretch;
    min-width: 240px;
    margin: auto 0;
  }
  
  /* FAQ Section Styles */
  .faq-section {
    background-color: rgba(242, 242, 242, 1);
    width: 100%;
    padding: 60px;
    color: rgba(0, 0, 0, 1);
  }
  
  @media (max-width: 991px) {
    .faq-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .faq-container {
    margin-top: 40px;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .faq-container {
      max-width: 100%;
    }
  }
  
  .faq-item {
    width: 100%;
    margin-bottom: 40px;
  }
  
  .faq-item.active .faq-question-container {
    background-color: rgba(92, 107, 10, 1);
    color: rgba(255, 255, 255, 1);
  }
  
  .faq-question-container {
    background-color: transparent;
    display: flex;
    width: 100%;
    padding: 20px 28px;
    flex-direction: column;
    align-items: stretch;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
    border-bottom: 1px solid rgba(92, 107, 10, 1);
  }
  
  @media (max-width: 991px) {
    .faq-question-container {
      max-width: 100%;
      padding: 20px;
    }
  }
  
  .faq-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .faq-header {
      max-width: 100%;
    }
  }
  
  .faq-question {
    align-self: stretch;
    margin: auto 0;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    font-size: 20px;
    font-weight: 500;
  }
  
  @media (max-width: 991px) {
    .faq-question {
      max-width: 100%;
    }
  }
  
  .toggle-icon {
    aspect-ratio: 3.38;
    object-fit: contain;
    object-position: center;
    width: 27px;
    border-radius: 0;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    background-color: rgba(92, 107, 10, 1);
    width: 100%;
    padding: 20px 28px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    display: none;
    transition: all 0.3s ease-in-out;
  }

  html {
    scroll-behavior: smooth;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item .toggle-icon {
    transform: rotate(180deg);
    filter: invert(1);
  }

  .faq-item.active .toggle-icon {
    transform: rotate(0deg);
    filter: invert(0);
  }
  
  .faq-item {
    cursor: pointer;
  }
  
  @media (max-width: 991px) {
    .faq-answer {
      max-width: 100%;
      padding: 20px;
    }
  }
  
  /* Contact Section Styles */
  .contact-section {
    background-color: rgba(242, 242, 242, 1);
    display: flex;
    width: 100%;
    padding: 60px;
    align-items: stretch;
    gap: 40px;
    font-size: 18px;
    color: rgba(155, 155, 155, 1);
    font-weight: 400;
    justify-content: start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .contact-section {
      max-width: 100%;
      padding: 60px 20px;
    }
  }
  
  .contact-image {
    aspect-ratio: 1.33;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 20px;
    min-width: 240px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  @media (max-width: 991px) {
    .contact-image {
      max-width: 100%;
    }
  }
  
  .contact-container {
    align-self: start;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }
  
  @media (max-width: 991px) {
    .contact-container {
      max-width: 100%;
    }

    .main-nav {
        display: none;
    }

    .main-header {
        justify-content: center;
    }

    .hero-section {
        background-position: right;
    }
  }
  
  .contact-form {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    padding: 30px 20px;
    overflow: hidden;
  }
  
  @media (max-width: 991px) {
    .contact-form {
      max-width: 100%;
    }
  }
  
  .form-input {
    align-self: stretch;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    border-radius: 10px;
    background-color: rgba(242, 242, 242, 1);
    min-height: 60px;
    width: 100%;
    padding: 19px 28px;
    gap: 10px;
    border: none;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .form-input:first-child {
    margin-top: 0;
  }
  
  @media (max-width: 991px) {
    .form-input {
      max-width: 100%;
      padding: 19px 20px;
    }
  }
  
  .submit-button {
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    border-radius: 10px;
    background-color: rgba(92, 107, 10, 1);
    min-height: 60px;
    width: 100%;
    padding: 20px 40px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family:
      Inter,
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
  }
  
  @media (max-width: 991px) {
    .submit-button {
      max-width: 100%;
      padding: 20px;
    }
  }
  
  /* Footer Styles */
  .main-footer {
    background-color: rgba(92, 107, 10, 1);
    width: 100%;
    padding: 40px 60px;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
  }
  
  @media (max-width: 991px) {
    .main-footer {
      max-width: 100%;
      padding: 40px 20px;
    }
  }
  
  .footer-divider {
    border-color: rgba(242, 242, 242, 1);
    border-style: solid;
    border-width: 1px;
    min-height: 1px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .footer-links {
    display: flex;
    margin-top: 20px;
    width: 100%;
    align-items: center;
    gap: 40px 120px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  @media (max-width: 991px) {
    .footer-links {
      max-width: 100%;
    }
  }
  
  .footer-link {
    align-self: stretch;
    margin: auto 0;
    text-decoration: none;
    color: inherit;
  }
  