.why-us {
    background: #0558ff;
    padding: 40px 0;
}

.why-us-inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.why-us-header {
    text-align: center;
    color: #fff;
}

.why-us-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.why-us-header p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.why-us-cards {
    display: flex;
    gap: 32px;
    width: 100%;
}

.why-us-card {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border: 2px solid #fff;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
}

.why-us-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.why-us-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 16px;
}

.why-us-card-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .why-us-inner {
        padding: 0 40px;
    }

    .why-us-header h2 {
        font-size: 32px;
    }

    .why-us-header p {
        font-size: 18px;
    }

    .why-us-card-content h3 {
        font-size: 22px;
    }

    .why-us-card-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 30px 0;
    }

    .why-us-inner {
        padding: 0 20px;
        gap: 24px;
    }

    .why-us-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .why-us-header p {
        font-size: 15px;
    }

    .why-us-cards {
        flex-direction: column;
        gap: 16px;
    }

    .why-us-card {
        padding: 20px;
        border-radius: 20px;
    }

    .why-us-card-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .why-us-card-content p {
        font-size: 15px;
    }
}
