@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Playfair+Display:wght@700&display=swap');

        :root {
            --primary-color: #5d3fd3;
            --secondary-color: #e5e5e5;
            --accent-color: #ff6f61;
            --dark-color: #1a1a1a;
            --light-color: #ffffff;
            --text-color: #333333;
            --transition-duration: 0.4s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--text-color);
            overflow-x: hidden;
            padding-top: 6rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color var(--transition-duration) ease;
        }

        a:hover {
            color: var(--accent-color);
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: background-color var(--transition-duration) ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
        }

        .nav-menu {
            list-style: none;
            display: flex;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--dark-color);
            font-weight: bold;
            font-size: 1rem;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--accent-color);
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform var(--transition-duration) ease;
        }

        .nav-menu a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
        }

        .burger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--dark-color);
            transition: all 0.3s ease;
        }

        /* Content */
        .content-section {
            padding: 4rem 0;
        }

        .content-section h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .content-section h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }

        .content-section p, .content-section ul {
            margin-bottom: 1.5rem;
        }

        .content-section ul {
            padding-left: 2rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
            color: var(--light-color);
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--light-color);
            transition: color var(--transition-duration) ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-contact {
            text-align: right;
            margin-bottom: 1rem;
        }

        .footer-contact p {
            margin: 0;
        }

        .footer-contact a {
            color: var(--light-color);
            transition: color var(--transition-duration) ease;
        }

        .footer-contact a:hover {
            color: var(--primary-color);
        }

        .copyright {
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.5s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 0;
            }

            .burger {
                display: flex;
            }

            .burger.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .burger.open span:nth-child(2) {
                opacity: 0;
            }

            .burger.open span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-contact {
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                margin-top: 1rem;
            }
        }

