
        :root {
            --primary-color: #d4a373;
            --secondary-color: #faedcd;
            --text-color: #333;
            --light-bg: #fefae0;
            --white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            background-color: var(--white);
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(212, 163, 115, 0.1), rgba(250, 237, 205, 0.2));
            border-radius: 0 0 50px 50px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #555;
            margin-top: 40px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }

        h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-top: 30px;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .highlight-box {
            background-color: var(--light-bg);
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: background 0.3s ease;
            margin-top: 20px;
        }

        .cta-button:hover {
            background-color: #bc8a5f;
        }

        .footer-link {
            text-align: center;
            margin-top: 50px;
            padding: 40px;
            background-color: #f9f9f9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            .container { padding: 15px; }
        }

        /* Schema.org JSON-LD */
    