:root {
    --brand-blue-dark: #0D1752;
    --brand-blue-action: #296BFF;
    --brand-green-primary: #27FB6B;
    --brand-white: #FFFFFF;
    --ghost-white: #F2F4FF;
    --light-border: #DEE7FF;
    --mid-gray: #46495C;
    --dark-gray: #1B1B22;
    --light-gray: #F1F1F1;
}

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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--brand-blue-dark);
    background: linear-gradient(135deg, var(--ghost-white) 0%, #E8F4FF 100%);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: var(--brand-white);
    box-shadow: 0 2px 10px rgba(13, 23, 82, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--brand-green-primary);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.nav-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue-dark);
}

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

.nav-link {
    color: var(--brand-blue-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    background: var(--brand-green-primary);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--ghost-white);
    color: var(--brand-blue-action);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* Hero Section */
.hero {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(13, 23, 82, 0.08);
    text-align: center;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    color: var(--brand-blue-dark);
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.3em;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: var(--brand-white);
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--light-border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(39, 251, 107, 0.2);
    border-color: var(--brand-green-primary);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-green-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--brand-blue-dark);
    font-family: 'Poppins', sans-serif;
}

.card-description {
    color: var(--mid-gray);
    flex-grow: 1;
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--brand-green-primary);
    color: var(--brand-blue-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 251, 107, 0.3);
}

.btn-secondary {
    background: var(--brand-white);
    color: var(--brand-blue-dark);
    border-color: var(--light-border);
}

.btn-secondary:hover {
    border-color: var(--brand-green-primary);
    background: rgba(39, 251, 107, 0.05);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Content Sections */
.content-section {
    background: var(--brand-white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(13, 23, 82, 0.06);
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-blue-dark);
    margin-bottom: 25px;
    font-size: 2em;
}

.content-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-blue-dark);
    margin: 25px 0 15px;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: var(--ghost-white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--light-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(39, 251, 107, 0.15);
    border-color: var(--brand-green-primary);
}

.stat-number {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--brand-green-primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: var(--mid-gray);
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85em;
}

/* Footer */
footer {
    background: var(--brand-white);
    margin-top: 60px;
    padding: 40px;
    text-align: center;
    border-top: 2px solid var(--light-border);
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 20px;
    }
}