/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo a {
    text-decoration: none;
}

.logo h2 {
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: #666;
    font-size: 0.8rem;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #003366;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #003366;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003366 0%, #0055a5 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-badges span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: #003366;
}

.grid-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 16px;
    color: #003366;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}

/* Methodology Section */
.methodology-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.methodology-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: #003366;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.methodology-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

/* Training Section */
.training-section {
    padding: 60px 0;
}

.training-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: #003366;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.training-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.3s ease;
}

.training-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.training-card h3 {
    color: #003366;
    margin-bottom: 16px;
}

.training-card ul {
    margin-top: 16px;
    list-style: none;
}

.training-card li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background-color: #003366;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Insights and Articles */
.insights-section, .articles-section {
    padding: 60px 0;
}

.insights-section h2, .articles-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
    color: #003366;
}

.insights-grid, .articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.insight-card, .article-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.insight-card small, .article-item small {
    display: block;
    margin-top: 16px;
    color: #666;
}

/* FAQ Page */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 24px;
}

.faq-item h3 {
    color: #003366;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 40px 0;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    color: #003366;
    margin-bottom: 8px;
}

.map-placeholder {
    background-color: #f0f0f0;
    padding: 24px;
    border-radius: 12px;
}

.contact-note {
    background-color: #e8f0fe;
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

/* Legal Pages */
.legal-page .legal-content section {
    margin-bottom: 40px;
}

.legal-page h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-page p, .legal-page ul {
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 32px;
}

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

/* About Page */
.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    color: #003366;
    margin-bottom: 24px;
}

.mission-box, .vision-box, .values-box {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.values-box ul {
    list-style: none;
    padding-left: 0;
}

.values-box li {
    padding: 8px 0;
}

.institutional-data {
    background-color: #e8f0fe;
    padding: 24px;
    border-radius: 12px;
}

.institutional-data p {
    margin-bottom: 16px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-section p, .footer-section ul {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 16px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #66ccff;
    text-decoration: none;
}

.cookie-btn {
    background-color: #003366;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #0055a5;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-badges {
        gap: 12px;
    }
    
    .hero-badges span {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}