* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary-color: #6c757d;
    --accent-color: #0d6efd;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --hero-gradient: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

body {
    overflow-x: hidden;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.main-content {
    padding-top: 76px;
}

.hero-section {
    position: relative;
    background: var(--hero-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    border-left: 5px solid var(--primary-color);
}

.card {
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.objectives-list {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.objective-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.objective-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    min-width: 40px;
}

.legal-box {
    background: white;
    border-radius: 1rem;
    border-left: 5px solid var(--primary-color);
}

.legal-icon {
    color: var(--primary-color);
    min-width: 60px;
}

footer {
    background: #1a1a1a !important;
}

footer p,
footer small {
    color: #adb5bd;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}
