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

body {
    font-family: 'Fredoka', sans-serif;
    color: #424242;
    line-height: 1.6;
    background: #f5f5f5;
}

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

/* Navigation */
.navbar {
    background: #FF9800;
    padding: 20px 0;
    box-shadow: 0 4px 0 #424242;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 0 #424242;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s;
}

.nav-links a:hover {
    transform: translateY(-2px);
}

/* Legal Container */
.legal-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 24px;
    border: 4px solid #424242;
    box-shadow: 0 8px 0 rgba(66, 66, 66, 0.3);
}

.legal-content h1 {
    font-size: 48px;
    color: #FF9800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 rgba(66, 66, 66, 0.1);
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
}

section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #FF9800;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #424242;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.legal-content a {
    color: #FF9800;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.highlight {
    background: #FFF3E0;
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid #FF9800;
    margin: 30px 0;
}

.highlight h2 {
    margin-top: 0;
}

.contact-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #424242;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom a {
    color: #FFEB3B;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }
}
