/* Legal Pages Shared Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #0f3b6f;
}

.nav-logo span {
    color: #eab308;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #eab308;
}

.back-home {
    background: #eab308;
    padding: 8px 20px;
    border-radius: 40px;
    color: #1e293b !important;
    font-weight: 700;
}

.back-home:hover {
    background: #ca8a04;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0f3b6f;
    margin: 4px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f3b6f 0%, #1e4a76 100%);
    padding: 60px 0 40px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-card {
    background: white;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.content-card h2 {
    font-size: 1.8rem;
    color: #0f3b6f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eab308;
    display: inline-block;
}

.content-card h3 {
    font-size: 1.3rem;
    color: #1e4a76;
    margin: 25px 0 15px;
}

.content-card h4 {
    font-size: 1.1rem;
    color: #334155;
    margin: 20px 0 10px;
}

.content-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-card ul, .content-card ol {
    margin: 15px 0 15px 25px;
}

.content-card li {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-card a {
    color: #eab308;
    text-decoration: none;
    font-weight: 500;
}

.content-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background: #eab30810;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: #eab308;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1e293b;
}

.contact-info-item h4 {
    margin: 0 0 5px;
    color: #0f3b6f;
}

.contact-info-item p {
    margin: 0;
    color: #64748b;
}

.contact-form {
    flex: 1;
    min-width: 280px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.submit-btn {
    background: #eab308;
    color: #1e293b;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #ca8a04;
    transform: translateY(-2px);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    display: none;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 30px;
    border-top: 4px solid #eab308;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-logo span {
    color: #eab308;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #eab308;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}