
.section-header {
    text-align: center; /* Centers the heading and paragraph */
    max-width: 700px;
    margin: 0 auto 60px; /* Centers the block itself */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin: 15px 0;
}


.benefits {
    padding: 100px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    /* Glassmorphism Core */
    background: rgba(255, 255, 255, 0.4); /* Semi-transparent */
    backdrop-filter: blur(15px); /* The frosted glass effect */
    -webkit-backdrop-filter: blur(15px); /* Safari support */
    
    /* Border that catches light */
    border: 1px solid rgba(255, 255, 255, 0.5); 
    
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03); /* Very light shadow */
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.6); /* Gets slightly clearer on hover */
    border-color: var(--accent); /* Lime green border on hover */
    box-shadow: 0 20px 40px rgba(11, 63, 89, 0.1);
}

/* Ensure the icon box still looks good on glass */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-card:hover .icon-box {
    background: var(--accent);
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits { padding: 60px 0; }
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefit-card {
        padding: 30px;
    }
}