/* Legal Pages Specific Styles */

.legal-section {
    padding: 60px 0 80px;
    background: #FAFAFA;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-size: 36px;
    font-weight: 700;
    color: #003B7A;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

.legal-article {
    margin-bottom: 40px;
}

.legal-article h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0095FF;
    margin-bottom: 16px;
}

.legal-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.container-somos {
    padding: 60px 50px;
    min-height: 60vh;
}

.somos h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0059c1;

}

.somos p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.somos strong {
    font-weight: 700;
}

.definition-item {
    margin-bottom: 24px;
    padding-left: 20px;
}

.definition-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.definition-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.legal-footer-note {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.legal-footer-note p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.legal-footer-note a {
    color: #0095FF;
    text-decoration: none;
    font-weight: 600;
}

.legal-footer-note a:hover {
    text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0 60px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .legal-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .legal-article h2 {
        font-size: 20px;
    }

    .legal-article p {
        font-size: 15px;
    }

    .definition-item {
        padding-left: 10px;
    }

    .definition-item h3 {
        font-size: 15px;
    }

    .definition-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-title {
        font-size: 24px;
    }

    .legal-article h2 {
        font-size: 18px;
    }

    .legal-article p {
        font-size: 14px;
    }

    .definition-item h3 {
        font-size: 14px;
    }

    .definition-item p {
        font-size: 13px;
    }
}