
        :root {
            --gold: #d4af37;
            --dark-luxury: #1a1a1a;
            --soft-grey: #f4f4f4;
            --text-main: #333;
            --accent: #c5a059;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #fff;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Header & Hero --- */
        header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x800'); /* Replace with actual luxury clinic background */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .subtitle {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
        }

        /* --- Content Sections --- */
        .section {
            padding: 80px 0;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark-luxury);
            text-align: center;
            margin-bottom: 40px;
        }

        .image-box {
            width: 100%;
            background: var(--soft-grey);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px 0;
            overflow: hidden;
            border: 1px solid #eee;
        }

        /* Image Placeholder Note for Developer: 
           Hero Image: 1200x600px
           Product Detail: 800x800px
           Comparison/Results: 1000x500px
        */

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            padding: 40px;
            background: #fff;
            border: 1px solid #e0e0e0;
            transition: 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .feature-card h3 {
            color: var(--gold);
            margin-bottom: 15px;
        }

        /* --- Treatment Results --- */
        .results-section {
            background-color: var(--dark-luxury);
            color: white;
            padding: 80px 0;
        }

        .results-section h2 { color: white; }

        .treatment-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            text-align: center;
        }

        .stat-item {
            flex: 1;
            min-width: 200px;
            margin: 20px;
        }

        .stat-item span {
            font-size: 3rem;
            font-weight: bold;
            color: var(--gold);
            display: block;
        }

        /* --- CTA --- */
        .cta-box {
            text-align: center;
            padding: 60px;
            background-color: var(--soft-grey);
            border-radius: 15px;
            margin: 60px 0;
        }

        .btn-gold {
            background-color: var(--gold);
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            border-radius: 50px;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-gold:hover {
            background-color: var(--dark-luxury);
            transform: translateY(-3px);
        }

        /* --- FAQ --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 15px;
        }

        .faq-item h4 {
            color: var(--dark-luxury);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* --- Schema Placeholder --- */
    