.benefits-section {
    position: relative;
    background-color: rgba(4, 104, 190, 0.8);
    padding: 80px 0;
    font-family: 'Metropolis', sans-serif;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

.benefit-card.animate {
    animation: fadeIn 1.0s ease-out forwards;
}

.benefits-grid .benefit-card:nth-child(2).animate {
    animation-delay: 0.3s;
}

.benefits-grid .benefit-card:nth-child(3).animate {
    animation-delay: 0.6s;
}

.benefit-image-wrapper {
    height: 234px;
    margin-bottom: 24px;
    padding: 8px;
    overflow: hidden;
}

.benefit-image {
    width: 100%;
    height: 100%;
}

.benefit-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-title {
        font-size: 36px;
    }
    
}

@media (max-width: 575.98px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-title {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 40px;
    }
    
    .benefit-text {
        font-size: 16px;
    }
}
