
        :root {
            --gold: #c5a059;
            --dark-blue: #0a192f;
            --light-grey: #f9f9f9;
            --text-color: #333;
            --white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: var(--white);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('https://upbg103.myueeshop.com/tmp/photo/2601/31/securiterefroidissementcutanezimmercryoscene.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .gold-divider {
            width: 80px;
            height: 3px;
            background-color: var(--gold);
            margin: 20px auto;
        }

        /* Content Styling */
        .content h2 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-blue);
            font-size: 2.2rem;
            margin-top: 50px;
            border-left: 5px solid var(--gold);
            padding-left: 20px;
        }

        .content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
        }

        .highlight-box {
            background-color: var(--light-grey);
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            position: relative;
        }

        .highlight-box::before {
            content: "✦";
            color: var(--gold);
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 1.5rem;
        }

        /* Link Styling */
        .backlink {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid var(--gold);
            transition: 0.3s;
        }

        .backlink:hover {
            color: var(--dark-blue);
            border-bottom-color: var(--dark-blue);
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--dark-blue);
            color: white;
            padding: 60px 0;
            margin-top: 80px;
        }

        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(197, 160, 89, 0.3);
            padding-bottom: 20px;
        }

        .faq-item h3 {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px;
            font-size: 0.9rem;
            color: #999;
        }
    