/* Birth Control Benefits Section Styles - Infographic Style */

.birth-control-benefits-section {
    background-color: white;
    padding: 80px 0;
}

.birth-control-benefits-section .container {
    max-width: 1500px !important;
    margin: 0 auto;
}

.benefits-main-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: #707070;
    margin-bottom: 0.5rem;
}

.benefits-subtitle {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #707070;
    line-height: 1.2;
}

.benefits-intro {
    font-size: 1.2rem;
    color: #6c6c6c;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.benefit-item {
    background: transparent;
    padding: 1.5rem 0.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.benefit-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.benefit-item:hover .benefit-icon {
    transform: none;
    background: transparent;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1rem;
    color: #6c6c6c;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .birth-control-benefits-section .container {
        max-width: 900px;
    }
    
    .benefits-subtitle {
        font-size: 2.2rem;
    }
    
    .benefits-main-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .birth-control-benefits-section {
        padding: 60px 0;
    }
    
    .birth-control-benefits-section .container {
        max-width: 800px;
    }
    
    .benefits-subtitle {
        font-size: 2rem;
    }
    
    .benefits-main-title {
        font-size: 1.5rem;
    }
    
    .benefits-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .benefit-item {
        padding: 1.5rem 0.5rem;
    }
    
    .benefit-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .birth-control-benefits-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .benefits-subtitle {
        font-size: 1.8rem;
    }
    
    .benefits-main-title {
        font-size: 1.4rem;
    }
    
    .benefit-item {
        padding: 1.25rem 0.25rem;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}
