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

:root {
    --primary: #1e40af;
    --secondary: #0ea5e9;
    --text: #0f172a;
    --bg: #fff;
    --muted: #64748b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg)
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    z-index: 1000
}

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

.logo {
    height: 40px
}

.nav-menu {
    display: flex;
    gap: 1.5rem
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text)
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.hero .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .7s ease
}

.hero .slide.active {
    opacity: 1
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, .6)
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 40%;
    max-width: 600px
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.hero-subtitle {
    margin-bottom: 1.5rem
}

.btn {
    padding: .75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600
}

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

.btn-secondary {
    border: 2px solid #fff;
    color: #fff
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer
}

.hero-nav.prev {
    left: 20px
}

.hero-nav.next {
    right: 20px
}

/* Stats */
.stats-section {
    padding: 4rem 0;
    background: #f8fafc
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem
}

.stat-card {
    background: #fff;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1)
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary)
}

/* News */
.news-section {
    padding: 4rem 0
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    transition: .3s
}

.news-card:hover {
    transform: translateY(-4px)
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.news-card .content {
    padding: 1rem
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem
}

/* Footer */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem
}

/* Responsive */
@media(max-width:768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        padding: 1rem
    }

    .nav-menu.active {
        display: flex
    }

    .nav-toggle {
        display: flex
    }
}