
.about-why-choose {
    max-width: 1400px;
    margin: 30px auto;
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 30px 20px;
}
.why-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #222222;
    text-align: center;
    margin-bottom: 24px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s;
    text-align: center;
}
.why-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.why-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.why-card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0047AB;
    margin-bottom: 10px;
}
.why-card-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #555555;
}
@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .about-why-choose {
        margin: 20px auto;
        padding: 24px 16px;
    }
    .why-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .why-grid {
        gap: 12px;
    }
    .why-card {
        padding: 16px 12px;
    }
    .why-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .why-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .why-card-text {
        font-size: 13px;
    }
}
@media (max-width: 560px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
