/* Legal Pages Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #1e293b;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.legal-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-title {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 10px;
}

.legal-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.legal-content h2 {
    color: #6366f1;
    font-size: 1.75rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    color: #475569;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #475569;
}

.legal-content strong {
    color: #1e293b;
}

.legal-content a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

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

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background: #6366f1;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #6366f1;
}

.back-to-home-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateX(-3px);
}

.back-to-home-btn svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    background: rgba(99, 102, 241, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 32px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-container {
        margin: 20px;
        padding: 20px;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}
