/* Legal Pages Styling */

.legal-container {
    margin-top: 70px;
    padding: 60px 20px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 70px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 3px solid #FF5A47;
}

.last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    margin-top: 30px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 20px 30px;
    list-style-type: disc;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-section ol {
    margin: 15px 0 20px 30px;
    list-style-type: decimal;
}

.legal-section ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-section strong {
    color: #333;
    font-weight: 600;
}

.legal-section a {
    color: #FF5A47;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #e64a38;
    text-decoration: underline;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #FF5A47;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 25px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 20px;
    }

    .legal-section ul,
    .legal-section ol {
        margin-left: 20px;
    }
}
