/* Legal Pages Specific Styles */

.legal-main-content {
    padding: 40px 79px 80px;
    position: relative;
    z-index: 5;
    max-width: 1440px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.legal-section {
    margin-bottom: 60px;
    max-width: 1000px;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    color: #2C3E50;
    margin-bottom: 40px;
}

.legal-content {
    font-family: 'Work Sans', sans-serif;
    color: #2C3E50;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #2C3E50;
    margin: 40px 0 20px 0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #2C3E50;
    margin: 30px 0 15px 0;
}

.legal-content p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #2C3E50;
    margin-bottom: 16px;
}

.legal-content strong {
    font-weight: 600;
}

.legal-content a {
    color: #4A90E2;
    text-decoration: none;
}

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

/* Footer link styles */
.footer-content a {
    color: #2C3E50;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .legal-main-content {
        padding: 24px 24px 80px 24px;
    }
    
    .legal-title {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin: 0 auto 32px auto;
        max-width: 320px;
    }
    
    .legal-content h2 {
        font-size: 20px;
        line-height: 28px;
        margin: 32px 0 16px 0;
    }
    
    .legal-content h3 {
        font-size: 16px;
        line-height: 24px;
        margin: 24px 0 12px 0;
    }
    
    .legal-content p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 14px;
    }
}