/* Styles for the certifications section in Política de Información */

.cert-section {
    padding: 80px 0;
}

.cert-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 60px;
}

.cert-row.reverse {
    flex-direction: row-reverse;
}

.cert-img-wrapper {
    position: relative;
    width: 48%;
    flex-shrink: 0;
}

.cert-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.cert-content {
    flex: 1;
}

.cert-content h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
    text-transform: uppercase;
}

.cert-content h2 span {
    color: #111;
    display: block;
}

.cert-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.btn-download-cert {
    display: inline-flex;
    align-items: center;
    background-color: #2D68FE;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-download-cert:hover {
    background-color: #1a4cd1;
}

.btn-download-cert i {
    margin-right: 10px;
}

@media (max-width: 991px) {
    .cert-row, .cert-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cert-img-wrapper {
        width: 100%;
        max-width: 450px;
        height: auto;
        margin: 0 auto;
    }
    
    .cert-content h2 {
        font-size: 28px;
    }
}
