        :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;
        }
        }
        .onboarding-page-wrapper {
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, #e7dfe8 0%, #a8cecb 50%, #7ab27a 100%);
        overflow-x: hidden;
        }
        .onboard-hero-section {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 80px 20px 60px;
        background: linear-gradient(45deg, rgba(122, 178, 122, 0.1), rgba(168, 206, 203, 0.1));
        }
        .hero-content-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
        }
        .onboard-main-title {
        font-size: 3.2rem;
        font-weight: 700;
        color: #2c5530;
        margin-bottom: 24px;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .hero-subtitle-text {
        font-size: 1.4rem;
        color: #4a6b4d;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
        font-weight: 400;
        }
        .hero-cta-button {
        background: #7ab27a;
        color: white;
        padding: 16px 40px;
        border: none;
        border-radius: 30px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        z-index: 10;
        position: relative;
        }
        .hero-cta-button:hover {
        background: #6ba26b;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(122, 178, 122, 0.3);
        }
        .geometric-decoration {
        position: absolute;
        width: 100px;
        height: 100px;
        background: rgba(168, 206, 203, 0.3);
        transform: rotate(45deg);
        top: 20%;
        right: 10%;
        z-index: 1;
        border-radius: 20px;
        }
        .process-overview-section {
        padding: 100px 20px 80px;
        background: white;
        position: relative;
        overflow: hidden;
        }
        .process-container-wrapper {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        }
        .process-section-header {
        text-align: center;
        margin-bottom: 80px;
        }
        .process-title-main {
        font-size: 2.8rem;
        color: #2c5530;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
        }
        .process-description-text {
        font-size: 1.2rem;
        color: #5a735d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.7;
        }
        .process-steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 50px;
        align-items: start;
        }
        .process-step-card {
        background: linear-gradient(135deg, #f8f6f9, #f2f8f2);
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 2px solid rgba(168, 206, 203, 0.2);
        }
        .process-step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(122, 178, 122, 0.15);
        }
        .step-number-badge {
        width: 60px;
        height: 60px;
        background: #7ab27a;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 25px;
        }
        .step-title-text {
        font-size: 1.5rem;
        color: #2c5530;
        font-weight: 600;
        margin-bottom: 18px;
        line-height: 1.4;
        }
        .step-description-content {
        font-size: 1rem;
        color: #5a735d;
        line-height: 1.6;
        margin-bottom: 25px;
        }
        .step-feature-list {
        text-align: left;
        margin: 20px 0;
        }
        .feature-list-item {
        color: #4a6b4d;
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
        font-size: 0.95rem;
        line-height: 1.5;
        }
        .feature-list-item::before {
        content: "";
        position: absolute;
        left: 0;
        color: #7ab27a;
        font-weight: 700;
        }
        .personalized-approach-section {
        padding: 100px 20px;
        background: linear-gradient(135deg, #e7dfe8, rgba(168, 206, 203, 0.3));
        position: relative;
        }
        .approach-content-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        }
        .approach-text-content {
        padding-right: 20px;
        }
        .approach-section-title {
        font-size: 2.6rem;
        color: #2c5530;
        font-weight: 700;
        margin-bottom: 30px;
        line-height: 1.3;
        }
        .approach-main-description {
        font-size: 1.15rem;
        color: #4a6b4d;
        line-height: 1.7;
        margin-bottom: 35px;
        }
        .approach-benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 40px;
        }
        .benefit-item-card {
        background: rgba(255, 255, 255, 0.6);
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(122, 178, 122, 0.2);
        }
        .benefit-item-card:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.05);
        }
        .benefit-icon-circle {
        width: 50px;
        height: 50px;
        background: #a8cecb;
        border-radius: 50%;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: white;
        }
        .benefit-title-small {
        font-size: 1.1rem;
        color: #2c5530;
        font-weight: 600;
        margin-bottom: 8px;
        }
        .benefit-description-brief {
        font-size: 0.9rem;
        color: #5a735d;
        line-height: 1.5;
        }
        .approach-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        height: 400px;
        }
        .approach-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        }
        .image-overlay-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(122, 178, 122, 0.1), transparent);
        z-index: 1;
        }
        .support-commitment-section {
        padding: 100px 20px 120px;
        background: white;
        position: relative;
        }
        .support-content-wrapper {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        }
        .support-main-title {
        font-size: 2.8rem;
        color: #2c5530;
        font-weight: 700;
        margin-bottom: 30px;
        line-height: 1.3;
        }
        .support-intro-text {
        font-size: 1.2rem;
        color: #4a6b4d;
        max-width: 700px;
        margin: 0 auto 60px;
        line-height: 1.7;
        }
        .support-features-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
        }
        .support-feature-block {
        background: linear-gradient(135deg, #f8f6f9, #f5faf5);
        padding: 35px 25px;
        border-radius: 18px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        border: 2px solid rgba(168, 206, 203, 0.15);
        }
        .support-feature-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(122, 178, 122, 0.12);
        border-color: rgba(168, 206, 203, 0.3);
        }
        .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #7ab27a, #a8cecb);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: white;
        }
        .feature-block-title {
        font-size: 1.4rem;
        color: #2c5530;
        font-weight: 600;
        margin-bottom: 15px;
        line-height: 1.4;
        }
        .feature-block-description {
        font-size: 1rem;
        color: #5a735d;
        line-height: 1.6;
        margin-bottom: 20px;
        }
        .feature-details-list {
        text-align: left;
        margin-top: 15px;
        }
        .detail-list-point {
        color: #4a6b4d;
        margin-bottom: 6px;
        position: relative;
        padding-left: 18px;
        font-size: 0.9rem;
        line-height: 1.4;
        }
        .detail-list-point::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #7ab27a;
        font-weight: 700;
        }
        .final-cta-container {
        background: linear-gradient(135deg, #7ab27a, #a8cecb);
        padding: 50px 40px;
        border-radius: 25px;
        text-align: center;
        margin-top: 40px;
        }
        .cta-container-title {
        font-size: 2rem;
        color: white;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .cta-container-text {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
        }
        .cta-action-button {
        background: white;
        color: #2c5530;
        padding: 16px 35px;
        border: none;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        z-index: 10;
        position: relative;
        }
        .cta-action-button:hover {
        background: #f8f8f8;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .floating-shape-1 {
        position: absolute;
        width: 80px;
        height: 80px;
        background: rgba(168, 206, 203, 0.2);
        border-radius: 50%;
        top: 15%;
        left: 5%;
        z-index: 1;
        animation: float-animation 6s ease-in-out infinite;
        }
        .floating-shape-2 {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(122, 178, 122, 0.2);
        transform: rotate(45deg);
        bottom: 20%;
        right: 8%;
        z-index: 1;
        border-radius: 15px;
        animation: float-animation 8s ease-in-out infinite reverse;
        }
        @keyframes float-animation {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        }
        @media (max-width: 768px) {
        .onboard-main-title {
        font-size: 2.4rem;
        }
        .hero-subtitle-text {
        font-size: 1.2rem;
        }
        .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        }
        .approach-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        }
        .approach-text-content {
        padding-right: 0;
        }
        .approach-section-title {
        font-size: 2.2rem;
        }
        .approach-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        }
        .approach-image-container {
        height: 300px;
        }
        .support-features-container {
        grid-template-columns: 1fr;
        gap: 25px;
        }
        .support-main-title {
        font-size: 2.3rem;
        }
        .final-cta-container {
        padding: 35px 25px;
        }
        .cta-container-title {
        font-size: 1.7rem;
        }
        .geometric-decoration,
        .floating-shape-1,
        .floating-shape-2 {
        display: none;
        }
        .onboard-hero-section {
        padding: 60px 20px 40px;
        min-height: 50vh;
        }
        .process-overview-section,
        .personalized-approach-section,
        .support-commitment-section {
        padding: 60px 20px;
        }
        }
        @media (max-width: 480px) {
        .onboard-main-title {
        font-size: 2rem;
        }
        .process-title-main {
        font-size: 2.2rem;
        }
        .approach-section-title {
        font-size: 1.9rem;
        }
        .support-main-title {
        font-size: 2rem;
        }
        .hero-cta-button,
        .cta-action-button {
        padding: 14px 28px;
        font-size: 1rem;
        }
        .process-step-card,
        .support-feature-block {
        padding: 25px 20px;
        }
        .final-cta-container {
        padding: 25px 20px;
        }
        }