/* Base Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.wrapper {
    width: 100%;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
}

/* Section Styles */
.policy-section, .terms-section {
    margin-top: 80px;
    padding: 2rem 1rem;
    text-align: center;
}

.policy-section h1, .terms-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-light {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        display: none;
        background: #333;
        padding: 1rem;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
    }

    .menu ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .policy-section h1, .terms-section h1 {
        font-size: 1.5rem;
    }

    .text-light {
        font-size: 0.9rem;
    }
}
