
        :root {
            --primary: #20B2AA;
            --primary-dark: #1a8e88;
            --primary-light: #e6f8f7;
            --accent: #00CED1;
            --accent-dark: #00A5A8;
            --text: #111827;
            --text-light: #4B5563;
            --background: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --font-primary: 'Plus Jakarta Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text);
            line-height: 1.6;
            background-color: var(--background);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

            .header.scrolled {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                padding: 0.75rem 0;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo {
            height: 40px;
            transition: transform 0.3s ease;
        }

            .logo:hover {
                transform: scale(1.05);
            }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 0.5rem 0;
        }

            .nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--primary);
                transform: scaleX(0);
                transition: transform 0.3s ease;
                transform-origin: right;
            }

            .nav-link:hover::after {
                transform: scaleX(1);
                transform-origin: left;
            }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .phone-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

            .phone-button:hover {
                background: var(--primary);
                color: white;
                transform: translateY(-2px);
            }

        .book-button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

            .book-button::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: -1;
            }

            .book-button:hover {
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
            }

                .book-button:hover::before {
                    opacity: 1;
                }

            .book-button i {
                transition: transform 0.3s ease;
            }

            .book-button:hover i {
                transform: translateX(4px);
            }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 10rem 0 5rem;
            background: var(--gray-50);
            position: relative;
            overflow: hidden;
        }

            .hero::before,
            .hero::after {
                content: '';
                position: absolute;
                border-radius: 50%;
                opacity: 0.5;
            }

            .hero::before {
                top: -30%;
                right: -10%;
                width: 60%;
                height: 120%;
                background: linear-gradient(45deg, var(--primary-light) 0%, transparent 60%);
                transform: rotate(-15deg);
                animation: floatGradient 15s ease-in-out infinite;
            }

            .hero::after {
                bottom: -20%;
                left: -10%;
                width: 50%;
                height: 100%;
                background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
                transform: rotate(15deg);
                opacity: 0.1;
                animation: floatGradient 20s ease-in-out infinite reverse;
            }

        @keyframes floatGradient {
            0%, 100% {
                transform: rotate(-15deg) translate(0, 0);
            }

            50% {
                transform: rotate(-5deg) translate(20px, -20px);
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: white;
            color: var(--text);
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

            .hero-badge i {
                color: var(--primary);
            }

        .hero h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

            .hero h1 .highlight {
                color: var(--primary);
            }

        .hero-description {
            font-size: clamp(1.125rem, 1.2vw, 1.25rem);
            color: var(--text-light);
            margin-bottom: 3rem;
            max-width: 540px;
            line-height: 1.8;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

            .benefit-item:hover {
                transform: translateY(-4px) scale(1.02);
                box-shadow: 0 8px 24px rgba(32, 178, 170, 0.15);
                background: white;
                border-color: var(--primary-light);
            }

                .benefit-item:hover .benefit-icon {
                    transform: scale(1.1) rotate(-10deg);
                    background: var(--primary);
                    color: white;
                }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .benefit-text {
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
            z-index: 1;
        }

        .visual-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .treatment-slider {
            position: relative;
            margin-bottom: 2rem;
            overflow: visible;
            min-height: 400px;
        }

        .treatment-slide {
            transition: all 0.5s ease-out;
        }

        .treatment-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin-bottom: 1.5rem;
        }

        .treatment-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .treatment-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .treatment-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        .treatment-duration {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .treatment-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .feature-tag {
            padding: 0.5rem 1rem;
            background: var(--gray-100);
            border-radius: 100px;
            font-size: 0.875rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .slider-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 2rem;
        }

        .nav-button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gray-100);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .nav-button:hover {
                background: var(--primary);
                color: white;
            }

        .nav-dots {
            display: flex;
            gap: 0.5rem;
        }

        .nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gray-200);
            transition: all 0.3s ease;
            cursor: pointer;
        }

            .nav-dot:hover {
                background: var(--primary);
            }

            .nav-dot.active {
                width: 24px;
                border-radius: 100px;
                background: var(--primary);
            }

        @media (max-width: 1200px) {
            .nav-links {
                gap: 2rem;
            }

            .hero-grid {
                gap: 3rem;
            }

            .benefits {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-description,
            .benefits {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .benefits {
                max-width: 600px;
                grid-template-columns: repeat(2, 1fr);
            }

            .visual-card {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .nav-buttons {
                display: none;
            }

            .hero {
                padding: 8rem 0 4rem;
            }

                .hero h1 {
                    font-size: clamp(2.5rem, 5vw, 3rem);
                }

            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }

                .hero-cta a {
                    width: 100%;
                    justify-content: center;
                }

            .benefits {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .hero {
                padding: 7rem 0 3rem;
            }

            .hero h1 {
                font-size: clamp(2rem, 5vw, 2.5rem);
            }

            .hero-badge {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
                margin-bottom: 1.5rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .phone-button,
            .book-button {
                padding: 0.65rem 1.25rem;
                font-size: 0.9rem;
            }

            .benefit-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .benefit-icon {
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            .benefit-text {
                font-size: 0.9rem;
            }

            .visual-card {
                padding: 1.5rem;
            }

            .treatment-slider {
                min-height: 350px;
            }

            .treatment-content h3 {
                font-size: 1.25rem;
            }

            .treatment-price {
                font-size: 1.1rem;
            }

            .slider-nav {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            .nav-dots {
                order: -1;
                width: 100%;
                justify-content: center;
                margin-bottom: 1rem;
            }

            .nav-button {
                width: 42px;
                height: 42px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 0.75rem;
            }

            .logo {
                height: 32px;
            }

            .hero {
                padding: 6rem 0 2.5rem;
            }

            .hero h1 {
                font-size: clamp(1.75rem, 5vw, 2rem);
                margin-bottom: 1rem;
            }

            .hero-badge {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
                gap: 0.5rem;
                margin-bottom: 1.25rem;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 1.75rem;
            }

            .hero-cta {
                gap: 0.75rem;
                margin-bottom: 2rem;
            }

            .phone-button,
            .book-button {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }

            .benefit-item {
                padding: 1.25rem;
            }

            .benefit-icon {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }

            .benefit-text {
                font-size: 0.85rem;
            }

            .visual-card {
                padding: 1.25rem;
                border-radius: 20px;
            }

            .treatment-slider {
                min-height: 300px;
            }

            .treatment-image {
                border-radius: 12px;
                margin-bottom: 1.25rem;
            }

            .treatment-content h3 {
                font-size: 1.15rem;
                margin-bottom: 0.5rem;
            }

            .treatment-meta {
                margin-bottom: 1.25rem;
            }

            .treatment-price {
                font-size: 1rem;
            }

            .treatment-duration {
                font-size: 0.8rem;
            }

            .feature-tag {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }

            .treatment-features {
                gap: 0.5rem;
                margin-bottom: 1.5rem;
            }

            .nav-button {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }

            .nav-dot {
                width: 6px;
                height: 6px;
            }

            .nav-dot.active {
                width: 20px;
            }
        }
