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

body {
    font-family: 'Lilita One', sans-serif;
    background: radial-gradient(50% 50% at 50% 50%, #0037AC 0%, #002059 71.63%);
    min-height: 100vh;
    color: white;
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.faq-item, .section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:last-child, .section:last-child {
    border-bottom: none;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #FFD700;
}

p, li {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

a {
    color: #FFD700;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer {
    margin-top: 3rem;
    padding: 2rem 0 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
    text-decoration: none;
}

.footer-text {
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .content {
        padding: 1.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
