:root {
    --primary: #0E1B2C;
    --deep: #14263D;
    --accent: #1DBF8B;
    --light: #F4F7FA;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
}

.navbar {
    background: white !important;
}

.nav-link {
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(14,27,44,0.85), rgba(14,27,44,0.85)), 
                url('../img/hero.jpg') center/cover;
    color: white;
    padding: 140px 0;
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-accent:hover {
    background: #17a575;
}

.section-padding {
    padding: 100px 0;
}

.card-modern {
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-8px);
}

.image-section {
    border-radius: 20px;
    overflow: hidden;
}

.footer {
    background: var(--primary);
    color: #bbb;
    padding: 60px 0;
}