/* ===== SECTION 006: BENEFITS ===== */
.section-container-006 {
    max-width: 900px;
    width: 100%;
    margin: 0 auto; /* Center the container */
    padding: 40px 20px; /* Add vertical padding */
}

.section-header-006 {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-006 {
    font-size: 2.5rem;
    color: #1877F2;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-006 {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid-006 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.benefit-card-006 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-006::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-006:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card-006:hover::before {
    opacity: 1;
}

.benefit-icon-006 {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
    transition: all 0.3s ease;
}

.benefit-card-006:hover .benefit-icon-006 {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title-006 {
    font-size: 1.4rem;
    color: #1877F2;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-content-006 {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.highlight-006 {
    background: linear-gradient(120deg, #ffd700, #ffed4e);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #333;
}

.money-highlight-006 {
    background: linear-gradient(120deg, #34A853, #2E8B57);
    color: white;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin: 5px 0;
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
    animation: moneyPulse-006 2s infinite;
}

@keyframes moneyPulse-006 {
    0% {
        box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
    }
    50% {
        box-shadow: 0 4px 18px rgba(52, 168, 83, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(52, 168, 83, 0.3);
    }
}

.support-highlight-006 {
    background: linear-gradient(120deg, #1877F2, #0d5dbd);
    color: white;
    padding: 3px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin: 5px 0;
}

/* Feature List */
.feature-list-006 {
    list-style: none;
    margin-top: 15px;
}

.feature-item-006 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.feature-item-006:hover {
    background: rgba(24, 119, 242, 0.05);
}

.feature-icon-006 {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(24, 119, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1877F2;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text-006 {
    flex: 1;
    color: #555;
    line-height: 1.5;
}

/* Bottom CTA */
.bottom-cta-006 {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title-006 {
    font-size: 1.5rem;
    color: #1877F2;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-button-006 {
    background: linear-gradient(135deg, #1877F2, #0d5dbd);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cta-button-006:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(24, 119, 242, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-container-006 {
        padding: 30px 15px;
    }
    
    .benefits-grid-006 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title-006 {
        font-size: 2rem;
    }
    
    .section-subtitle-006 {
        font-size: 1.1rem;
    }
    
    .benefit-card-006 {
        padding: 25px;
    }
    
    .bottom-cta-006 {
        padding: 25px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .section-container-006 {
        padding: 20px 10px;
    }
    
    .section-title-006 {
        font-size: 1.8rem;
    }
    
    .section-subtitle-006 {
        font-size: 1rem;
    }
    
    .benefit-card-006 {
        padding: 20px;
    }
    
    .benefit-icon-006 {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-title-006 {
        font-size: 1.2rem;
    }
    
    .benefits-grid-006 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bottom-cta-006 {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .cta-title-006 {
        font-size: 1.3rem;
    }
    
    .cta-button-006 {
        padding: 12px 25px;
        font-size: 1rem;
    }
}