.main__partners {
    background: white;
    border: 1px solid #eae8e8;
    border-radius: 10px;
    margin: 20px auto;
    padding: 30px;
}

.main__partners ul {
    padding-left: 30px;
    list-style: disc;
}

body.dark .main__partners {
    border: 1px solid #4e4e4e;
    background-color: #2c2c2c;
}

.main__partners h1 {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size: 32px;
}

.main__partners p {
    text-indent: 30px;
    margin-bottom: 30px;
}

.stats-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 30px 0;
}

.stats-card {
    flex: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(#2785b7), to(#165b84));
    background: linear-gradient(to bottom, #2785b7, #165b84);
    border-radius: 12px;
    padding: 25px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

body.dark .stats-card {
    background: -webkit-gradient(linear, left top, left bottom, from(#2785b7), to(#165b84));
    background: linear-gradient(to bottom, #2785b7, #165b84);
}

.stats-card__number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stats-card__label {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-cards {
        flex-direction: column;
    }

    .main__partners {
        padding: 20px;
    }

    .stats-card__number {
        font-size: 28px;
    }
}

.contact_us {
    text-align: center;
}