:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #457b9d;
    --light: #f1faee;
    --dark: #0a1128;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 5px solid var(--primary);
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-banner {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-banner h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.cta-link {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-2px);
}

.faq-section {
    margin: 3rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--secondary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    background-color: var(--light);
    padding: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    font-size: 1.5rem;
    color: var(--accent);
}

.faq-answer {
    padding: 1.2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question:after {
    content: '-';
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
}

.footer-link {
    color: var(--light);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary);
}

.copyright {
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-banner h2 {
        font-size: 1.2rem;
    }
    
    .cta-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-link {
        width: 100%;
        text-align: center;
    }
}
