
/* Legal Pages Styling - Clean White Professional Theme */
.legal-container {
    background: #ffffff;
    min-height: 100vh;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-header {
    padding: 40px 0 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.legal-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f766e;
    margin: 0;
    text-align: center;
}

.legal-card {
    background: white;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.legal-card-body {
    padding: 40px;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

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

.legal-section h6 {
    color: #0f766e;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 4px solid #14b8a6;
    text-transform: none;
    letter-spacing: 0.5px;
}

.legal-section p {
    color: #333333;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-section ul {
    color: #333333;
    padding-left: 24px;
    margin: 16px 0;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 8px;
}

.legal-section li:before {
    content: "•";
    color: #14b8a6;
    font-size: 1.2rem;
    position: absolute;
    left: -16px;
    top: -1px;
}

.legal-buttons {
    background: #fafafa;
    padding: 24px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-btn-primary {
    background: #0f766e;
    color: white;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.legal-btn-primary:hover {
    background: #0d645e;
    color: white;
}

.legal-btn-secondary {
    background: white;
    color: #0f766e;
    border: 1px solid #0f766e;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.legal-btn-secondary:hover {
    background: #f8f8f8;
    color: #0d645e;
    border-color: #0d645e;
}

/* Enhanced typography */
.legal-section strong {
    color: #000000;
    font-weight: 600;
}

.legal-section em {
    color: #666666;
    font-style: italic;
}

/* Last updated badge */
.last-updated {
    background: #f5f5f5;
    padding: 8px 16px;
    display: inline-block;
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 16px;
}

/* Contact info styling */
.contact-info {
    background: #f8f8f8;
    padding: 20px;
    border-left: 4px solid #14b8a6;
    margin-top: 16px;
}

/* Print Styles */
@media print {
    .legal-buttons {
        display: none;
    }
    
    .legal-card {
        border: 1px solid #ccc;
    }
    
    .legal-container {
        background: white;
        padding: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2.25rem;
    }
    
    .legal-card-body {
        padding: 24px;
    }
    
    .legal-section h6 {
        font-size: 1.05rem;
    }
    
    .legal-btn-primary,
    .legal-btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 8px;
    }
    
    .legal-buttons {
        flex-direction: column;
        gap: 8px;
    }
}