/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #8b7355;
            --accent-gold: #c9a961;
            --light-bg: #fafaf8;
            --white: #ffffff;
            --text-color: #333333;
            --light-text: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Playfair Display', serif;
            color: var(--text-color);
            line-height: 1.8;
            background-color: var(--white);
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            color: var(--primary-color);
        }

        /* Language Switcher */
        .language-switcher {
            position: fixed;
            top: 20px;
            right: 30px;
            z-index: 1001;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .lang-btn {
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            transition: color 0.3s ease;
        }

        .lang-btn:hover {
            color: var(--accent-gold);
        }

        .lang-btn.active {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .lang-divider {
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            padding: 1.5rem 0;
            z-index: 1000;
            border-bottom: 1px solid #e5e5e5;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 3rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--accent-gold);
        }

        nav a.active {
            color: var(--accent-gold);
        }

        /* Header Section */
        .page-header {
            padding: 10rem 2rem 4rem;
            background: linear-gradient(to bottom, var(--light-bg), var(--white));
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .divider {
            width: 80px;
            height: 2px;
            background-color: var(--accent-gold);
            margin: 2rem auto;
        }

        /* Biography Content */
        .biography-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem 6rem;
        }

        .biography-content h2 {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            font-weight: 400;
        }

        .biography-content h2:first-child {
            margin-top: 0;
        }

        .biography-content p {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: var(--light-text);
            text-align: justify;
        }

        .biography-content .highlight {
            background-color: var(--light-bg);
            padding: 2rem;
            margin: 2rem 0;
            border-left: 3px solid var(--accent-gold);
        }

        .biography-content ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .biography-content li {
            margin-bottom: 0.8rem;
            color: var(--light-text);
            font-size: 1.05rem;
        }

        /* Back Button */
        .back-btn {
            display: inline-block;
            margin: 2rem 0;
            padding: 0.8rem 2rem;
            background-color: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }

        .back-btn:hover {
            background-color: var(--secondary-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }


        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(26, 26, 26, 0.98);
            color: var(--white);
            padding: 1.5rem 2rem;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .cookie-content p {
            flex: 1;
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e8e8e8;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.7rem 1.8rem;
            border: none;
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-btn.accept {
            background-color: var(--accent-gold);
            color: var(--primary-color);
        }

        .cookie-btn.accept:hover {
            background-color: #d4b76f;
        }

        .cookie-btn.decline {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--white);
        }

        .cookie-btn.decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .cookie-consent {
                padding: 1.5rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .language-switcher {
                top: 10px;
                right: 15px;
                padding: 0.4rem 0.8rem;
            }

            .lang-btn {
                font-size: 0.85rem;
                padding: 0.2rem 0.4rem;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .biography-content {
                padding: 3rem 1.5rem;
            }

            .biography-content h2 {
                font-size: 1.6rem;
            }

            .biography-content p {
                font-size: 1rem;
                text-align: left;
            }
        }