/* Legal Pages Specific Styles */
.legal-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-section {
    background: rgba(26, 20, 17, 0.6);
    border: 1px solid rgba(244, 207, 128, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--primary-color);
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    color: var(--secondary-color);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-color);
}

/* Make nav brand clickable */
.nav-brand a {
    color: inherit;
    text-decoration: none;
}