
  .nav-container.svelte-1v36xxy {
    width: 100%;
    background: var(--color-background);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--z-index-fixed);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    transform: translateY(0);
  }

  .nav-container.sticky.svelte-1v36xxy {
    position: fixed;
    top: 0;
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--color-shadow);
  }

  @media (max-width: 1220px) {
    .nav-container.svelte-1v36xxy {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      transform: none;
      margin: 0;
      padding: 0;
    }

    .nav-container.sticky.svelte-1v36xxy {
      position: fixed;
      top: 0;
      transform: none;
    }

    .mobile-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 80px;
      z-index: calc(var(--z-index-fixed) + 1);
      margin: 0;
      padding-top: 0;
    }

    .secondary-nav-container {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: calc(var(--z-index-fixed) + 2);
      margin: 0;
    }
  }

    .service-card.svelte-hz61c4 {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .service-card.svelte-hz61c4:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

    .service-icon.svelte-hz61c4 {
        width: 80px;
        height: 80px;
        background: #f3f4f6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .service-card.svelte-hz61c4:hover .service-icon:where(.svelte-hz61c4) {
        background: #e5e7eb;
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .service-card.svelte-hz61c4 {
            padding: 1.5rem;
        }
        
        .service-icon.svelte-hz61c4 {
            width: 60px;
            height: 60px;
        }
    }

    @media (max-width: 1220px) {
        section.svelte-hz61c4 {
            margin-top: 0;
        }
    }

    .stats.svelte-1tib2rn {
        overflow: hidden;
    }

    .stat-card.svelte-1tib2rn {
        padding: 2rem;
        transition: transform 0.3s ease;
        height: 100%;
    }

    .stat-card.svelte-1tib2rn:hover {
        transform: translateY(-5px);
    }

    .icon-wrapper.svelte-1tib2rn {
        display: inline-flex;
        padding: 1rem;
        background: rgba(144, 197, 63, 0.1);
        border-radius: 50%;
    }

    .article-card.svelte-1az0nwd {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .article-card.svelte-1az0nwd:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .philosophy-card.svelte-kbl6yx {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .philosophy-card.svelte-kbl6yx:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .icon-wrapper.svelte-kbl6yx {
        display: inline-flex;
        padding: 1rem;
        background: rgba(144, 197, 63, 0.1);
        border-radius: 50%;
    }

  .cta.svelte-1qdygc6 {
    background-color: #90C53F;
  }

  .hero-section.svelte-khsqxp {
    height: var(--hero-height);
    min-height: var(--hero-min-height);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
  }

  .hero-content.svelte-khsqxp {
    max-width: 800px;
    padding: 0 2rem;
  }

  h1.svelte-khsqxp {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    line-height: 1.3;
  }

  p.svelte-khsqxp {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .hero-buttons.svelte-khsqxp {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .hero-section.svelte-khsqxp {
      height: 50vh;
      min-height: 400px;
      padding: 2rem 0;
    }

    .hero-content.svelte-khsqxp {
      padding: 0 1rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100%;
    }

    h1.svelte-khsqxp {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }

    p.svelte-khsqxp {
      font-size: 1rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .hero-buttons.svelte-khsqxp {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
      padding-bottom: 0;
    }
  }

  .page-container.svelte-1uha8ag {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
  }

  .nav-wrapper.svelte-1uha8ag {
    position: relative;
    z-index: var(--z-index-fixed);
  }

  main.svelte-1uha8ag {
    position: relative;
    z-index: 1;
    overflow: visible;
  }

  main.has-sticky-nav.svelte-1uha8ag {
    margin-top: 84px;
  }

  @media (max-width: 1280px) {
    main.has-sticky-nav.svelte-1uha8ag {
      margin-top: 60px;
    }
  }

  @media (max-width: 768px) {
    .page-container.svelte-1uha8ag {
      padding: 0;
    }
  }
