/* Legal Pages Common Styles - Copyright, Terms, Privacy */

/* Hero Section */
.container{
    width: 1200px;
}

.legal-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content Area */
.legal-page {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Content Sections */
.legal-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.legal-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.legal-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ol li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Info Box */
.info-box {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box h3 {
    color: #667eea;
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box p {
    color: #555;
    margin-bottom: 0.8rem;
}

.info-box ul {
    margin-bottom: 0;
}

/* Warning/Notice Box */
.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.notice-box h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 1rem;
}

.notice-box p {
    color: #856404;
    margin-bottom: 0.8rem;
}

.notice-box ol,
.notice-box ul {
    margin-bottom: 0;
}

.notice-box ol li,
.notice-box ul li {
    color: #856404;
}

/* Highlight Box */
.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #667eea;
}

.highlight-box ul {
    margin-bottom: 0;
}

/* Last Updated */
.last-updated {
    color: #999;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Links in Content */
.legal-section a,
.info-box a,
.notice-box a,
.highlight-box a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-section a:hover,
.info-box a:hover,
.notice-box a:hover,
.highlight-box a:hover {
    border-bottom-color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .container{
        width: 100%;
    }
    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-hero p {
        font-size: 1rem;
    }

    .legal-section {
        padding: 2rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.3rem;
    }

    .legal-section p {
        font-size: 1rem;
    }

    .info-box,
    .notice-box,
    .highlight-box {
        padding: 1.5rem;
    }
}
