/* ===================================
   БЛОК: СЕРТИФИКАТ
   =================================== */

.certificate-section {
    width: 100%;
    padding: 60px 0;
}

.certificate-section .center {
    text-align: center;
    margin-bottom: 40px;
}

.certificate-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
    text-align: center !important;
    font-family: 'Montserrat', sans-serif !important;
}

.certificate-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-image-wrap img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .certificate-section h2 {
        font-size: 22px;
    }
    
    .certificate-image-wrap img {
        max-width: 100%;
    }
    
    .certificate-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .certificate-section h2 {
        font-size: 18px;
    }
}

