/* ======================== ACHIEVE SECTION (MEJORADO) ======================== */
.section-achieve {
    padding: 100px 24px;
    background: #ffffff;
    text-align: center;
}

.achieve-content {
    max-width: 900px;
    margin: 0 auto;
}

.achieve-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b5aa6;
    /* Azul corporativo fuerte */
    margin-bottom: 24px;
    line-height: 1.3;
}

.achieve-content p {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 24px;
}

.achieve-content p:last-child {
    margin-bottom: 0;
}

/* Estilo para el enlace de "Call us today" */
.achieve-content a {
    color: #0b5aa6;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.achieve-content a:hover {
    color: #7cb355;
    /* Cambia al verde de la marca al pasar el mouse */
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .section-achieve {
        padding: 60px 20px;
    }

    .achieve-content h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .achieve-content p {
        font-size: 15px;
    }
}

/* Page Green Header (Inner pages theme) */
.page-green-header {
    background: var(--green-section);
    padding: 28px 24px;
    color: var(--white);
}

.page-green-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--blue-dark);
}

.page-green-header p {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}