.why-middle-east {
    background: #27334a;
    color: white;
    padding: 80px 0 20px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

.why-middle-east .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.why-middle-east h2 {
    font-size: 38px;
    font-weight: 700;
}

.subtitle {
    margin: 10px 0 40px;
    font-size: 18px;
    opacity: 0.9;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 40px;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box h3 {
    color: #ffb628;
    font-size: 36px;
    font-weight: 700;
}

.vision-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tags span {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    font-size: 15px;
    cursor: default;
}

@media(max-width: 768px) {
    .stat-box {
        width: 100%;
    }

    .vision-title {
        font-size: 22px;
    }
}