/* ========== Секция: Образование и призыв ========== */
.about-credentials-section {
    padding: 70px 20px;
    background-color: #ffffff;
    text-align: center;
}

.about-credentials-content {
    max-width: 850px;
    margin: 0 auto;
}

.credentials-text {
    font-size: 1.35rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 32px;
}

.credentials-text strong {
    color: #e03e3e;
    font-weight: bold;
}

.diploma-container {
    margin: 36px 0 40px;
}

.diploma-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.pain-points-list {
    list-style: none;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    text-align: left; /* ← оставляем читаемость */
    margin: 24px auto 0;
    max-width: 600px; /* ← ограничиваем ширину списка, чтобы он не тянулся до краёв */
}

.pain-points-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

.pain-points-list li::before {
    content: "🔸";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #e03e3e;
}

/* Мобильные */
@media (max-width: 768px) {
    .credentials-text {
        font-size: 1.15rem;
        line-height: 1.45;
    }

    .diploma-container img {
        max-width: 95%;
        border-radius: 6px;
    }

    .pain-points-list {
        font-size: 1rem;
        padding: 0 10px;
    }
}
