/*--------------------------------------------------------------
# Reasons Section - Style NewPower
--------------------------------------------------------------*/

.reasons-section {
    padding: 80px 0;
    background-color: #fff;
}

.reasons-section .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    line-height: 1.2;
}

.reasons-list {
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 25px;
}

.reason-number {
    background-color: #0099CC;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    margin-top: 2px;
}

.reason-text {
    flex: 1;
}

.reason-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: left;
}

.reason-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .reasons-section {
        padding: 60px 0;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .reason-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .reason-content h4 {
        font-size: 1.1rem;
    }
}