/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background-color: #005ea5;
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #005ea5 0%, #1d70b8 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffdd00;
    color: #005ea5;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ffc107;
}

/* Notice Section */
.notice-section {
    background-color: #f8f9fa;
    border-left: 4px solid #005ea5;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notice-content h3 {
    color: #005ea5;
    margin-bottom: 0.5rem;
}

.thank-you {
    font-weight: bold;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-section h2 {
    color: #005ea5;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #005ea5;
    margin-bottom: 0.5rem;
}

.edition {
    color: #666;
    font-style: italic;
}

/* Footer Styles */
footer {
    background-color: #005ea5;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    margin-bottom: 1rem;
}

.copyright a {
    color: #ffdd00;
    text-decoration: none;
    margin: 0 0.5rem;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-symbol {
    font-family: monospace;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}