body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-logo {
    max-height: 200px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-cta {
    background-color: #28a745;
    color: white;
    padding: 15px 40px;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-cta:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6c757d;
    font-weight: 600;
}

/* Footer */
footer {
    background: #343a40;
    color: white;
    padding: 40px 0;
    text-align: center;
}

