:root {
    --primary: #1a2a6c;
    --secondary: #b21f1f;
    --accent: #fdbb2d;
    --gold: #d4af37;
    --light: #f8f9fa;
    --dark: #212529;
    --grey: #6c757d;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.thin-content {
    max-width: 800px;
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; color: var(--primary); }
h2 { font-size: 2.2rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Top Bar Ticker */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1001;
    overflow: hidden;
}

.ticker-wrapper {
    white-space: nowrap;
    display: flex;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    margin-right: 50px;
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 40px; /* Below ticker */
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -1px;
}

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

.nav-links a {
    font-weight: 600;
    color: var(--grey);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #111e54; transform: translateY(-3px); }

.btn-secondary { background: var(--gold); color: var(--white); margin-left: 10px; }
.btn-secondary:hover { background: #b8972f; transform: translateY(-3px); }

.btn-white { background: var(--white); color: var(--primary); }

.btn-block { width: 100%; display: block; text-align: center; }

/* Cards & Grids */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

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

.icon-large {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Sections */
.py-large { padding: 100px 0; }
.py-medium { padding: 50px 0; }
.text-center { text-align: center; }

.section-title {
    margin-bottom: 50px;
}

.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

/* Footer */
.main-footer {
    background: #0d1431;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    z-index: 2000;
    display: none; /* Controlled by JS */
}

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

.btn-sm { padding: 5px 15px; font-size: 0.8rem; margin-left: 10px; border-radius: 3px; cursor: pointer; }
.btn-outline { border: 1px solid var(--grey); background: none; }

/* Contact Page Specific */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 5px; font-weight: 600; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Resource Tabs */
.tab-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    color: var(--grey);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.hidden { display: none; }

.news-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.date { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

.rounded-img { border-radius: 20px; width: 100%; }
.shadow { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .nav-links { display: none; } /* Mobile menu simplified */
    .menu-toggle { display: block; font-size: 1.5rem; }
    h1 { font-size: 2.2rem; }
    .banner-flex { flex-direction: column; text-align: center; gap: 15px; }
}