* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }

        :root {
            --primary: #8B4513;
            --secondary: #D2B48C;
            --accent: #F5F5DC;
            --highlight: #CD853F;
            --text: #3E2723;
            --dark: #2E1810;
        }

        body {
            background-color: var(--accent);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23F5F5DC"/><path d="M0,50 Q25,30 50,50 T100,50 M50,0 Q30,25 50,50 T50,100" stroke="%23D2B48C" stroke-width="0.5" fill="none" opacity="0.3"/></svg>');
            background-size: 100px 100px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            color: var(--accent);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid var(--secondary);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'Georgia', serif;
        }

        .logo::before {
            content: "♛";
            color: var(--secondary);
            margin-right: 8px;
            font-size: 28px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            transition: color 0.3s;
            position: relative;
            font-family: 'Georgia', serif;
        }

        nav ul li a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }

        .burger span {
            height: 3px;
            width: 100%;
            background-color: var(--accent);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Main Content */
        main {
            margin-top: 80px;
            padding: 40px 0;
        }

        .page-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title h1 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            font-family: 'Georgia', serif;
        }

        .page-title h1::before {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--secondary);
        }

        .terms-content {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--secondary);
        }

        .terms-section {
            margin-bottom: 30px;
        }

        .terms-section h2 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            font-family: 'Georgia', serif;
        }

        .terms-section h3 {
            font-size: 20px;
            color: var(--primary);
            margin: 20px 0 10px;
            font-family: 'Georgia', serif;
        }

        .terms-section p {
            margin-bottom: 15px;
        }

        .terms-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .terms-section li {
            margin-bottom: 8px;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--accent);
            padding: 50px 0 20px;
            margin-top: 60px;
            position: relative;
        }

        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
            font-family: 'Georgia', serif;
        }

        .footer-column h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .footer-column p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 10px 0;
            }

            .burger {
                display: flex;
            }

            .page-title h1 {
                font-size: 28px;
            }

            .terms-content {
                padding: 20px;
            }
        }

