
.why-choose-section {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px 20px;
    margin: 40px 0;
    text-align: center;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    margin-bottom: 32px;
}
.why-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.why-card {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s;
    text-align: center;
}
.why-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.why-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.why-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #0047AB;
    margin-bottom: 12px;
}
.why-card p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    margin: 0;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .why-choose-section {
        padding: 30px 16px;
    }
    .why-cards {
        flex-direction: column;
        gap: 16px;
    }
    .why-card {
        padding: 20px 16px;
    }
    .why-icon {
        font-size: 32px;
    }
    .why-card h3 {
        font-size: 18px;
    }
}
