/* Legal Pages Styles */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.page-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

.lead {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 30px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

section h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

section p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

section ul {
    margin-bottom: 20px;
}

section li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 10px;
}

/* Contact Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.contact-info-sidebar h3 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info-sidebar h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
    color: #f39c12;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    margin-bottom: 10px;
}

.faq-list a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.faq-list a:hover {
    opacity: 1;
    color: #f39c12;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.alert-success {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.alert-danger {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.alert-warning {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.alert i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Navbar Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.3rem;
}

.navbar-brand i {
    margin-right: 8px;
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-content {
        padding: 25px;
        margin: 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-sidebar {
        margin-top: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .contact-form,
    .contact-info-sidebar,
    .btn {
        display: none !important;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
    
    .page-title {
        color: #000;
        border-bottom-color: #000;
    }
    
    section h2 {
        color: #000;
        border-left-color: #000;
    }
}