    @font-face {
      font-family: 'Inter';
      src: url('fonts/Inter-VariableFont.woff2') format('woff2-variations');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Playfair Display';
      src: url('fonts/PlayfairDisplay-VariableFont.woff2') format('woff2-variations');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }
    :root {
    --primary-color: #7ab27a;
    --secondary-color: #a8cecb;
    --tertiary-color: #e7dfe8;
    --gradient-primary: linear-gradient(135deg, #7ab27a, #a8cecb);
    --gradient-subtle: radial-gradient(ellipse at top, rgba(122, 178, 122, 0.1), rgba(168, 206, 203, 0.05));
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow-elegant: 0 8px 32px rgba(122, 178, 122, 0.15);
    --shadow-soft: 0 4px 16px rgba(168, 206, 203, 0.12);
    }
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-subtle);
    overflow-x: hidden;
    }
    header {
    background: linear-gradient(135deg, var(--white) 0%, rgba(231, 223, 232, 0.3) 50%, rgba(168, 206, 203, 0.1) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(122, 178, 122, 0.1);
    position: relative;
    z-index: 100;
    }
    .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo . navigation";
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    gap: 2rem;
    min-height: 100px;
    }
    .logo-section {
    grid-area: logo;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 110;
    }
    .logo-section img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(122, 178, 122, 0.2));
    }
    .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(122, 178, 122, 0.1);
    }
    .main-nav {
    grid-area: navigation;
    position: relative;
    z-index: 105;
    }
    .nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    justify-items: end;
    }
    .nav-item a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border-radius: 12px;
    background: rgba(231, 223, 232, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(122, 178, 122, 0.15);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    }
    .nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.2s ease;
    z-index: -1;
    }
    .nav-item a:hover {
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft);
    }
    .nav-item a:hover::before {
    left: 0;
    }
    footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(44, 62, 80, 0.95) 100%);
    color: var(--white);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    }
    footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transform: rotate(-12deg);
    z-index: 1;
    }
    .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
    }
    .footer-grid {
    display: subgrid;
    grid-template-columns: subgrid;
    grid-template-rows: auto auto auto;
    gap: 3rem 2rem;
    }
    .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    }
    .footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    }
    .footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    }
    .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }
    .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 206, 203, 0.1);
    }
    .contact-item:last-child {
    border-bottom: none;
    }
    .contact-label {
    font-weight: 500;
    color: var(--secondary-color);
    min-width: 80px;
    font-size: 0.9rem;
    }
    .contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    }
    .contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    }
    .contact-value a:hover {
    color: var(--secondary-color);
    }
    .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    }
    .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    }
    .footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
    }
    .footer-bottom {
    border-top: 1px solid rgba(168, 206, 203, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    }
    .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    }
    .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    }
    .footer-brand .brand-name {
    font-size: 1.25rem;
    color: var(--secondary-color);
    }
    .cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 380px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-elegant);
    border: 1px solid rgba(122, 178, 122, 0.2);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    }
    .cookie-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.5;
    }
    .cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    }
    .cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 80px;
    }
    .cookie-accept {
    background: var(--gradient-primary);
    color: var(--white);
    }
    .cookie-accept:hover {
    box-shadow: var(--shadow-soft);
    }
    .cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(122, 178, 122, 0.3);
    }
    .cookie-decline:hover {
    background: rgba(122, 178, 122, 0.05);
    }
    @media (max-width: 1200px) {
    .header-container {
    grid-template-columns: 1fr;
    grid-template-areas:
    "logo"
    "navigation";
    text-align: center;
    gap: 1.5rem;
    }
    .nav-list {
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    }
    @media (max-width: 768px) {
    .header-container {
    padding: 1rem 1.5rem;
    }
    .nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    }
    .nav-item a {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    }
    .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    .footer-container {
    padding: 3rem 1.5rem 2rem;
    }
    .footer-bottom {
    flex-direction: column;
    text-align: center;
    }
    .cookie-consent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    }
    .cookie-buttons {
    justify-content: center;
    }
    }
    @media (max-width: 480px) {
    .nav-list {
    grid-template-columns: 1fr;
    }
    .brand-name {
    font-size: 1.5rem;
    }
    }
    .hero-main-section {
    background: linear-gradient(135deg, #7ab27a 0%, #a8cecb 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    }
    .hero-content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    }
    .hero-title-main {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    }
    .hero-subtitle-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    }
    .hero-cta-button {
    background: white;
    color: #7ab27a;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin: 12px;
    }
    .hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #f8f8f8;
    }
    .geometric-decoration {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    }
    .results-showcase-section {
    padding: 80px 30px;
    background: #f8faf8;
    margin: 0;
    }
    .results-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }
    .results-header {
    text-align: center;
    margin-bottom: 60px;
    }
    .results-title {
    font-size: 2.8rem;
    color: #2c3e2c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    }
    .results-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    }
    .metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
    }
    .metric-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(122, 178, 122, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    }
    .metric-card:hover {
    transform: translateY(-8px);
    border-color: #a8cecb;
    }
    .metric-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #7ab27a;
    margin-bottom: 15px;
    display: block;
    }
    .metric-label {
    font-size: 1.1rem;
    color: #2c3e2c;
    font-weight: 600;
    margin-bottom: 12px;
    }
    .metric-detail {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
    }
    .testimonials-section {
    padding: 80px 30px;
    background: linear-gradient(45deg, #e7dfe8 0%, #a8cecb 100%);
    margin: 0;
    }
    .testimonials-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }
    .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    }
    .testimonial-card {
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    }
    .testimonial-card:hover {
    transform: scale(1.02);
    }
    .testimonial-quote {
    font-size: 1.1rem;
    color: #2c3e2c;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    }
    .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    }
    .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7ab27a;
    }
    .author-info {
    flex: 1;
    }
    .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e2c;
    margin-bottom: 5px;
    }
    .author-title {
    font-size: 0.9rem;
    color: #666;
    }
    .success-stories-section {
    padding: 80px 30px;
    background: white;
    margin: 0;
    }
    .stories-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }
    .stories-header {
    text-align: center;
    margin-bottom: 60px;
    }
    .stories-title {
    font-size: 2.6rem;
    color: #2c3e2c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    }
    .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    align-items: start;
    }
    .story-card {
    background: #f8faf8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    }
    .story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    .story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    loading: lazy;
    }
    .story-content {
    padding: 35px;
    }
    .story-category {
    font-size: 0.9rem;
    color: #7ab27a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    }
    .story-headline {
    font-size: 1.4rem;
    color: #2c3e2c;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.4;
    }
    .story-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    }
    .story-results {
    background: rgba(122, 178, 122, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #7ab27a;
    }
    .results-highlight {
    font-size: 0.95rem;
    color: #2c3e2c;
    font-weight: 600;
    margin-bottom: 8px;
    }
    .results-detail {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    }
    .process-excellence-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c3e2c 0%, #4a5c4a 100%);
    color: white;
    margin: 0;
    }
    .process-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    }
    .process-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    }
    .process-intro {
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    }
    .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    }
    .process-step {
    background: rgba(255,255,255,0.1);
    padding: 40px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    }
    .process-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    }
    .step-number {
    width: 50px;
    height: 50px;
    background: #7ab27a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    }
    .step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
    }
    .step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    }
    .client-outcomes-section {
    padding: 80px 30px;
    background: #f8faf8;
    margin: 0;
    }
    .outcomes-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    }
    .outcomes-header {
    text-align: center;
    margin-bottom: 60px;
    }
    .outcomes-title {
    font-size: 2.6rem;
    color: #2c3e2c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    }
    .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    }
    .outcome-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #a8cecb;
    }
    .outcome-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-top-color: #7ab27a;
    }
    .outcome-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7ab27a, #a8cecb);
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .outcome-title {
    font-size: 1.4rem;
    color: #2c3e2c;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.4;
    }
    .outcome-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    }
    .outcome-benefit {
    background: rgba(122, 178, 122, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2c3e2c;
    font-weight: 500;
    }
    .cta-final-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #7ab27a 0%, #a8cecb 100%);
    text-align: center;
    margin: 0;
    }
    .cta-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    }
    .cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }
    .cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    }
    .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    }
    .cta-primary, .cta-secondary {
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    margin: 8px;
    }
    .cta-primary {
    background: white;
    color: #7ab27a;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #f8f8f8;
    }
    .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    }
    .cta-secondary:hover {
    background: white;
    color: #7ab27a;
    transform: translateY(-2px);
    }
    @media (max-width: 768px) {
    .hero-title-main {
    font-size: 2.5rem;
    }
    .hero-subtitle-text {
    font-size: 1.1rem;
    padding: 0 20px;
    }
    .hero-content-wrapper {
    padding: 40px 20px;
    }
    .results-title, .stories-title, .process-title, .outcomes-title {
    font-size: 2.2rem;
    }
    .metrics-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    }
    .testimonials-grid, .stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    }
    .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
    }
    .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    }
    .cta-buttons {
    flex-direction: column;
    align-items: center;
    }
    .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 280px;
    }
    .geometric-decoration {
    display: none;
    }
    }
    @media (max-width: 480px) {
    .hero-title-main {
    font-size: 2rem;
    line-height: 1.3;
    }
    .results-container, .testimonials-wrapper, .stories-container, .process-wrapper, .outcomes-container, .cta-wrapper {
    padding: 0 15px;
    }
    .metric-card, .testimonial-card, .story-content, .process-step, .outcome-item {
    padding: 25px 20px;
    }
    .testimonials-grid, .stories-grid {
    grid-template-columns: 1fr;
    }
    .story-card {
    margin-bottom: 20px;
    }
    }