* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', serif;
        }
        
        body {
            background-color: #f8f3e9;
            color: #4a3c28;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(248, 243, 233, 0.95);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid #c9b18f;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: normal;
            color: #8b5a3c;
            text-decoration: none;
            font-style: italic;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #c9b18f;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #4a3c28;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            font-family: 'Arial', sans-serif;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #8b5a3c;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger-menu span {
            width: 25px;
            height: 2px;
            background-color: #8b5a3c;
            margin: 4px 0;
            transition: 0.3s;
        }
        
        /* Main Content */
        main {
            padding-top: 100px;
            padding-bottom: 50px;
        }
        
        .terms-content {
            background-color: #fff;
            border: 2px solid #c9b18f;
            padding: 40px;
            margin-bottom: 50px;
            position: relative;
        }
        
        .terms-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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="none" stroke="rgba(201,177,143,0.1)" stroke-width="1"/></svg>');
            opacity: 0.1;
            z-index: 0;
        }
        
        .terms-content > * {
            position: relative;
            z-index: 1;
        }
        
        h1 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #8b5a3c;
            font-weight: normal;
            font-style: italic;
        }
        
        h2 {
            font-size: 24px;
            margin: 30px 0 15px;
            color: #8b5a3c;
            font-weight: normal;
            font-style: italic;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: #8b5a3c;
            padding: 50px 0 20px;
            color: #f8f3e9;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f8f3e9;
            font-weight: normal;
            font-style: italic;
        }
        
        .footer-column ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #f8f3e9;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #c9b18f;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            color: #f8f3e9;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #c9b18f;
            color: #c9b18f;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #f8f3e9;
                flex-direction: column;
                padding: 20px;
                border-top: 2px solid #c9b18f;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .terms-content {
                padding: 20px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 20px;
            }
        }

