* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #0f0f0f;
            color: #e5e5e5;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #000;
            border-bottom: 1px solid #333;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #d4af37;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: #e5e5e5;
            text-decoration: none;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        /* Main Content */
        .main-content {
            margin-top: 120px;
            padding: 60px 0 100px;
        }

        .page-title {
            text-align: center;
            font-size: 3rem;
            color: #d4af37;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 60px;
            position: relative;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: #d4af37;
        }

        .content-section {
            background: #1a1a1a;
            border: 1px solid #333;
            padding: 60px;
            margin-bottom: 40px;
        }

        .content-section h2 {
            color: #d4af37;
            font-size: 1.8rem;
            font-weight: 300;
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .content-section h3 {
            color: #e5e5e5;
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .content-section p {
            color: #888;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .content-section ul {
            color: #888;
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .content-section ul li {
            margin-bottom: 10px;
        }

        .highlight {
            color: #d4af37;
            font-weight: 400;
        }

        .contact-info {
            background: #222;
            padding: 40px;
            border: 1px solid #333;
            margin-top: 40px;
            text-align: center;
        }

        .contact-info h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-weight: 300;
            text-transform: uppercase;
        }

        .contact-info p {
            color: #888;
        }

        /* Footer */
        .footer {
            background: #000;
            border-top: 1px solid #333;
            padding: 60px 0 40px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #d4af37;
        }

        .footer-links a.active {
            color: #d4af37;
        }

        .footer-info {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 40px 30px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }