.stats-section {
    padding: 80px 0;
}

.btn-orange {
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    width: 30%;
    float: left;
    font-size: 18px;
    transition: all 0.3s;
    background-color: #1a4793;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.stat-card {
    background: #e3eef8;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 25px;
    font-weight: 700;
    color: #2563ab;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
    color: #4a5568;
    font-weight: 500;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    height: 300px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-spacing {
    margin-bottom: 20px;
}

.bottom-text {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .image-card {
        min-height: 200px;
    }
}
