/* Custom styles for the Benefits Section */

.benefit-box {
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: #ffc800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    position: relative;
}

.benefit-icon i {
    font-size: 32px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.benefit-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #212529;
    font-weight: 600;
    width: 100%;
}

.benefit-box p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    width: 100%;
}

#benefits {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

#benefits .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #212529;
}

#benefits .section-subheading {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #6c757d;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 768px) {
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 28px;
    }
    
    .benefit-box {
        padding: 2rem 1.5rem;
    }
} 