:root {
    --primary-red: #D72638; /* Vibrant Red */
    --primary-green: #008148; /* Trustworthy Green */
    --accent-color: #F8F9FA;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #FFFFFF;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: var(--white);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-red) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-primary-red {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-red:hover {
    background-color: #b01a2b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 38, 56, 0.3);
}

.btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-green:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 129, 72, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4rem 0;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding-top: 4rem;
    font-size: 0.9rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer a {
    color: #afafaf;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}
