
        :root {
            --primary-color: #2c3e50;
            --accent-color: #c5a059; /* Or médical */
            --text-color: #444;
            --bg-light: #f9f9f9;
            --white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://upbg103.myueeshop.com/u_file/2601/20/photo/980nmlaservascularremovalfacialscene-1629192e56.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            border-radius: 0 0 50px 50px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 10px;
        }

        /* Section Premium */
        section {
            padding: 60px 0;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin-bottom: 30px;
        }

        .content-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }

        /* Before/After Gallery */
        .comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 40px 0;
        }

        .image-box {
            text-align: center;
        }

        .image-box img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .label {
            display: block;
            margin-top: 10px;
            font-weight: 60 font-weight: bold;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Table Style */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }

        table td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }

        /* FAQ Section */
        .faq-item {
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .faq-question {
            font-weight: 600;
            cursor: pointer;
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            color: var(--primary-color);
        }

        .faq-answer {
            padding-bottom: 15px;
            display: none;
            color: #666;
        }

        /* Backlink Style */
        .cta-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            border-bottom: 2px solid var(--accent-color);
            transition: 0.3s;
        }

        .cta-link:hover {
            background: var(--accent-color);
            color: white;
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            .comparison-container { grid-template-columns: 1fr; }
        }
    