/* How You Benefit Section */
.how-you-benefit {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-type {
    background: #f5f3e8;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #e8e2d0;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #71675B;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #71675B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Stats Section */

.benefit-stats {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1.5rem;

    margin: 2rem 0;

    padding: 1.5rem 0;

    border-top: 1px solid rgba(113, 103, 91, 0.2);

    border-bottom: 1px solid rgba(113, 103, 91, 0.2);

}

.stat {

    text-align: center;

}

.stat-number {

    display: block;

    font-size: 2.5rem;

    font-weight: 700;

    color: #333;

    line-height: 1;

    margin-bottom: 0.5rem;

}

.stat-label {

    font-size: 0.8rem;

    color: #666;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    line-height: 1.2;

}
/* Mobile Responsiveness for Stats */

@media (max-width: 768px) {

    .benefit-stats {

        grid-template-columns: 1fr;

        gap: 1rem;

        margin: 1.5rem 0;

        padding: 1rem 0;

    }

    

    .stat-number {

        font-size: 2rem;

    }

    

    .stat-label {

        font-size: 0.75rem;

    }

}


@media (max-width: 480px) {

    .stat-number {

        font-size: 1.8rem;

    }
.benefit-type h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-subtitle {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-type ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-type li {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #555;
    font-size: 0.95rem;
}

.check {
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.benefit-type strong {
    color: #333;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .benefit-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefit-types {
        grid-template-columns: 1fr;
    }
    
    .how-you-benefit {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .benefit-type {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefit-type {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-type h3 {
        font-size: 1.3rem;
    }
}