/* Legal Pages Specific Styles */

/* Import CSS variables for consistency */
:root {
    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #8A8A8A;
    --vibrant-pink: #E91E63;
    --coral-pink: #FF6B9D;
    --gradient-primary: linear-gradient(135deg, #E91E63, #9C27B0);
}

/* Simple Legal Pages Styles */
.simple-legal-content {
    padding: 120px 0 80px;
    background: #000000;
}

.simple-legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 2rem 0 1rem 0;
    font-family: var(--font-primary);
}

.last-updated {
    color: #B3B3B3;
    font-size: 1rem;
    margin-bottom: 0;
    font-family: var(--font-secondary);
}

.simple-legal-body {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-family: var(--font-secondary);
}

.simple-legal-body p {
    color: #B3B3B3;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.simple-legal-body h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.simple-legal-body ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.simple-legal-body ul li {
    color: #B3B3B3;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style-type: disc;
}

.simple-legal-body ul li strong {
    color: #FFFFFF;
    font-weight: 600;
}

.simple-legal-body a {
    color: #E91E63;
    text-decoration: none;
    font-weight: 500;
}

.simple-legal-body a:hover {
    color: #FF6B9D;
    text-decoration: underline;
}

/* Special gradient styling for cross-links between legal pages */
.simple-legal-body a[href="privacy-policy.html"],
.simple-legal-body a[href="terms-of-service.html"] {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-decoration: none;
}

.simple-legal-body a[href="privacy-policy.html"]:hover,
.simple-legal-body a[href="terms-of-service.html"]:hover {
    background: linear-gradient(135deg, #FF6B9D, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
}

.simple-legal-body hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

/* Mobile Responsive for Simple Legal Pages */
@media (max-width: 768px) {
    .simple-legal-content {
        padding: 100px 0 60px;
    }
    
    .simple-legal-header h1 {
        font-size: 2rem;
    }
    
    .simple-legal-body {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .simple-legal-body h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .simple-legal-body p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .simple-legal-body ul {
        padding-left: 1.2rem;
    }
}

@media (max-width: 576px) {
    .simple-legal-header h1 {
        font-size: 1.8rem;
    }
    
    .simple-legal-body h3 {
        font-size: 1.2rem;
    }
    
    .simple-legal-body p {
        font-size: 0.9rem;
    }
}

