* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color1: #71b6b6;
            --color2: #b6bdba;
            --color3: #2c023c;
            --color4: #764658;
            --color5: #a39896;
        }

        body {
            font-family: 'Georgia', serif;
            color: var(--color3);
            background-color: #fafafa;
            line-height: 1.7;
        }

        
        .site-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: var(--color3);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .brand-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color1);
            letter-spacing: 1px;
        }

        .main-nav ul {
            display: flex;
            list-style-type: none;
            gap: 2rem;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        .main-nav a:hover {
            color: var(--color1);
        }

        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: var(--color1);
        }

        .mobile-navigation {
            visibility: hidden;
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            background-color: var(--color4);
            color: white;
            padding: 20px;
            position: absolute;
            top: 70px;
            right: 0;
            width: 250px;
            z-index: 999;
        }

        .mobile-navigation.active {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav ul {
            list-style-type: none;
        }

        .mobile-nav li {
            margin: 15px 0;
        }

        .mobile-nav a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
        }

        
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background-color: var(--color2);
            overflow: hidden;
        }

        .hero-content {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            padding: 4rem 2rem;
        }

        .hero-text {
            z-index: 2;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--color3);
            margin-bottom: 2rem;
            line-height: 1.2;
            font-weight: 300;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: var(--color4);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-image-container {
            position: relative;
            height: 600px;
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background-color: var(--color1);
            opacity: 0.3;
            border-radius: 50%;
            top: -50px;
            right: -50px;
            z-index: 0;
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 0 200px 0;
            position: relative;
            z-index: 1;
            box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background-color: var(--color1);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--color1);
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--color1);
        }

        
        .philosophy-section {
            padding: 8rem 5%;
            background-color: white;
            position: relative;
        }

        .philosophy-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: var(--color2);
            opacity: 0.4;
            border-radius: 0 50% 50% 0;
            left: 0;
            top: 10%;
        }

        .philosophy-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .philosophy-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--color3);
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 300;
        }

        .philosophy-text {
            columns: 2;
            column-gap: 4rem;
            font-size: 1.15rem;
            color: var(--color4);
            text-align: justify;
        }

        .philosophy-text p {
            margin-bottom: 1.5rem;
            break-inside: avoid;
        }

        
        .methods-section {
            padding: 8rem 5%;
            background-color: var(--color3);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .methods-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background-color: var(--color4);
            opacity: 0.1;
            border-radius: 50%;
            bottom: -250px;
            right: -250px;
        }

        .methods-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .methods-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--color1);
            margin-bottom: 4rem;
            font-weight: 300;
        }

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .method-item {
            padding: 2.5rem;
            background-color: rgba(113, 182, 182, 0.1);
            border-left: 5px solid var(--color1);
            transition: transform 0.3s ease;
        }

        .method-item:hover {
            transform: translateX(10px);
        }

        .method-item h3 {
            font-size: 1.5rem;
            color: var(--color1);
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .method-item p {
            color: var(--color2);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        
        .benefits-section {
            padding: 8rem 5%;
            background-color: var(--color2);
            position: relative;
        }

        .benefits-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--color3);
            margin-bottom: 4rem;
            text-align: center;
            font-weight: 300;
        }

        .benefits-layout {
            display: flex;
            gap: 4rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .benefits-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .benefits-visual::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background-color: var(--color1);
            opacity: 0.2;
            border-radius: 50%;
            top: -30px;
            left: -30px;
            z-index: 0;
        }

        .benefit-circle {
            width: 200px;
            height: 200px;
            background-color: var(--color1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto;
            position: relative;
            z-index: 1;
        }

        .benefit-circle span {
            font-size: 3rem;
            color: white;
            font-weight: bold;
        }

        .benefits-list {
            flex: 2;
            min-width: 300px;
        }

        .benefit-point {
            padding: 2rem;
            margin-bottom: 2rem;
            background-color: white;
            border-left: 4px solid var(--color4);
            position: relative;
        }

        .benefit-point::before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: var(--color4);
            border-radius: 50%;
            left: -9px;
            top: 50%;
            transform: translateY(-50%);
        }

        .benefit-point h3 {
            font-size: 1.5rem;
            color: var(--color3);
            margin-bottom: 0.8rem;
        }

        .benefit-point p {
            color: var(--color5);
            font-size: 1.1rem;
        }

        
        .programs-section {
            padding: 8rem 5%;
            background-color: white;
            position: relative;
        }

        .programs-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .programs-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--color3);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .programs-intro {
            font-size: 1.2rem;
            color: var(--color4);
            margin-bottom: 4rem;
            max-width: 800px;
        }

        .programs-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .program-block {
            background-color: var(--color2);
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .program-block::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: var(--color1);
            opacity: 0.3;
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }

        .program-block h3 {
            font-size: 2rem;
            color: var(--color3);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .program-block p {
            color: var(--color4);
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
        }

        .program-duration {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background-color: var(--color1);
            color: white;
            border-radius: 20px;
            font-size: 0.95rem;
            margin-top: 1rem;
        }

        
        .science-section {
            padding: 8rem 5%;
            background-color: var(--color4);
            color: white;
        }

        .science-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .science-image {
            width: 100%;
            height: 500px;
            position: relative;
        }

        .science-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 200px 0 0 200px;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.3);
        }

        .science-text h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--color1);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .science-text p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            line-height: 1.9;
            color: var(--color2);
        }

        .science-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            color: var(--color1);
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--color2);
            margin-top: 0.5rem;
        }

        
        .started-section {
            padding: 8rem 5%;
            background-color: var(--color1);
            position: relative;
            overflow: hidden;
        }

        .started-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background-color: var(--color3);
            opacity: 0.1;
            border-radius: 50%;
            top: -200px;
            left: -200px;
        }

        .started-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .started-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: white;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .started-content p {
            font-size: 1.3rem;
            color: var(--color3);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .steps-flow {
            display: flex;
            justify-content: space-around;
            margin: 4rem 0;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .step-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            font-weight: bold;
            color: var(--color3);
        }

        .step-item h3 {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 0.8rem;
        }

        .step-item p {
            font-size: 1rem;
            color: var(--color3);
        }

        .cta-button-white {
            display: inline-block;
            padding: 1.2rem 3rem;
            background-color: white;
            color: var(--color1);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid white;
            margin-top: 2rem;
        }

        .cta-button-white:hover {
            background-color: transparent;
            color: white;
        }

        
        .newsletter-section {
            padding: 8rem 5%;
            background-color: white;
        }

        .newsletter-content {
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--color2);
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .newsletter-content::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: var(--color1);
            opacity: 0.2;
            border-radius: 50%;
            bottom: -150px;
            right: -150px;
        }

        .newsletter-inner {
            position: relative;
            z-index: 2;
        }

        .newsletter-inner h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--color3);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .newsletter-inner p {
            font-size: 1.2rem;
            color: var(--color4);
            margin-bottom: 2.5rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            border: 2px solid var(--color1);
            border-radius: 50px;
            font-size: 1rem;
            background-color: white;
        }

        .newsletter-form button {
            padding: 1rem 2.5rem;
            background-color: var(--color1);
            color: white;
            border: 2px solid var(--color1);
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: transparent;
            color: var(--color1);
        }

        
        .site-footer {
            background-color: var(--color3);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--color1);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .footer-section p, .footer-section address {
            color: var(--color2);
            font-size: 1rem;
            line-height: 1.8;
            font-style: normal;
        }

        .footer-section a {
            color: var(--color2);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--color1);
        }

        .footer-bottom {
            border-top: 1px solid var(--color4);
            padding-top: 2rem;
            text-align: center;
            color: var(--color2);
            font-size: 0.95rem;
        }

        
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-image-container {
                height: 400px;
            }

            .philosophy-text {
                columns: 1;
            }

            .science-content {
                grid-template-columns: 1fr;
            }

            .science-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .benefits-layout {
                flex-direction: column;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
        }
