/* Legal Pages Styling - Modern ProctorEye Theme */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.03) 0%, rgba(123, 44, 191, 0.05) 100%);
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

/* Header - Matching main site */
header {
    background-color: #FFFFFF;
    padding: 1em 0;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

#header-logo {
    height: 65px !important;
    max-height: 65px !important;
    width: auto !important;
    display: block;
}

#header-logo-text {
    font-size: 1.8em;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    font-weight: 600;
    color: #9d4edd;
    text-decoration: none;
    padding: 5px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #5a189a;
    text-decoration: none;
}

/* Hero Section for Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #5a189a 0%, #7b2cbf 50%, #9d4edd 100%);
    color: white;
    text-align: center;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600" opacity="0.1"><circle cx="200" cy="100" r="100" fill="white"/><circle cx="800" cy="150" r="80" fill="white"/><circle cx="500" cy="50" r="60" fill="white"/></svg>');
    pointer-events: none;
}

.legal-hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.legal-hero .icon-placeholder {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.legal-hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-hero .last-updated {
    font-size: 1.1em;
    margin-top: 20px;
    opacity: 0.9;
    font-weight: 500;
}

/* Legal Content Container */
.legal-container {
    max-width: 900px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.legal-content {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(90, 24, 154, 0.15);
    padding: 50px;
    border: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #9d4edd 0%, #7b2cbf 50%, #5a189a 100%);
}

.legal-content h2 {
    font-size: 1.8em;
    color: #7b2cbf;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.legal-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    border-radius: 2px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: #444444;
    font-size: 1.05em;
    margin-bottom: 1.2em;
    line-height: 1.8;
}

.legal-content strong {
    color: #7b2cbf;
    font-weight: 600;
}

.legal-content ul {
    padding-left: 0;
    margin-bottom: 1.5em;
}

.legal-content li {
    margin-bottom: 0.8em;
    position: relative;
    padding-left: 25px;
    list-style: none;
    color: #444444;
    line-height: 1.7;
}

.legal-content li::before {
    content: "•";
    color: #9d4edd;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.legal-content ul ul li::before {
    content: "◦";
    font-size: 1em;
    color: #7b2cbf;
}

.legal-content a {
    color: #9d4edd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.legal-content a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9d4edd, #7b2cbf);
    transition: width 0.3s ease;
}

.legal-content a:hover::after {
    width: 100%;
}

.legal-content a:hover {
    color: #5a189a;
    text-decoration: none;
}

/* Important Text Styling */
.legal-content p strong:contains("THE SERVICE IS PROVIDED"),
.legal-content p strong:contains("TO THE FULLEST EXTENT") {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(123, 44, 191, 0.05));
    padding: 15px;
    border-radius: 8px;
    display: block;
    margin: 20px 0;
    border-left: 4px solid #9d4edd;
    font-size: 0.95em;
}

/* Navigation Links */
.navigation-links {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(157, 78, 221, 0.1);
}

.navigation-links a {
    display: inline-block;
    margin: 0 15px;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid transparent;
}

.navigation-links a:first-child {
    background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    color: white;
}

.navigation-links a:first-child:hover {
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 24, 154, 0.3);
}

.navigation-links a:last-child {
    border: 2px solid #9d4edd;
    color: #9d4edd;
}

.navigation-links a:last-child:hover {
    background: rgba(157, 78, 221, 0.1);
    transform: translateY(-2px);
}

/* Footer - Enhanced styling */
footer {
    background: linear-gradient(135deg, #3c096c 0%, #5a189a 50%, #7b2cbf 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 400" opacity="0.05"><circle cx="100" cy="50" r="40" fill="white"/><circle cx="900" cy="100" r="60" fill="white"/><circle cx="500" cy="80" r="30" fill="white"/></svg>');
    pointer-events: none;
}

footer .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 20px;
    color: #FFFFFF;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.branding {
    font-size: 0.9em;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5em;
    }
    
    .legal-content {
        padding: 30px 25px;
        margin: -20px 20px 40px;
    }
    
    header nav {
        flex-direction: column;
        align-items: center;
    }
    
    header nav ul {
        margin-top: 1em;
    }
    
    header nav ul li {
        margin-left: 15px;
    }
    
    .legal-content h2 {
        font-size: 1.5em;
    }
    
    .navigation-links a {
        display: block;
        margin: 10px 0;
    }
} 