/* Legal Pages Styles */

.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.legal-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content */
.legal-content {
    background: rgba(255, 255, 255, 0.95);
    color: #1a202c;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #764ba2;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #764ba2;
}

.contact-info {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #667eea;
    font-weight: 600;
}

/* Footer */
.legal-footer {
    text-align: center;
    margin-top: 3rem;
}

.legal-footer .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.legal-footer .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.legal-footer .btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }

    .legal-section ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 90px 0 50px;
    }

    .legal-header {
        margin-bottom: 2rem;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-updated {
        font-size: 0.9rem;
    }

    .legal-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .legal-section {
        margin-bottom: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }

    .legal-section ul {
        margin-left: 1.2rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .legal-footer .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .legal-page {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        background: white;
    }

    .legal-footer,
    nav,
    footer {
        display: none;
    }
}

