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