/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #333;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    font-weight: 400;
    color: #666;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    opacity: 0.8;
}

.nav a:hover {
    opacity: 1;
    color: #667eea;
}

.lang-link {
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.lang-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.lang-link.active {
    background: #667eea;
    color: #ffffff;
}

/* Main Content */
.main {
    padding: 1.5rem 0;
    min-height: calc(100vh - 120px);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 0.9rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Features Section */
.features {
    margin-bottom: 2rem;
}

.features h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
}

.feature-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #2c3e50;
    font-weight: 500;
}

.feature-card p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Legal Links Section */
.legal-links {
    margin-bottom: 2rem;
}

.legal-links h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.legal-link {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.legal-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
}

.legal-link h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #2c3e50;
    font-weight: 500;
}

.legal-link p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Legal Document Styles */
.legal-document {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.document-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.document-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.document-header h1 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.last-updated {
    font-size: 0.8rem;
    opacity: 0.9;
}


.intro {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
    color: #666;
}

.article {
    margin-bottom: 2rem;
}

.article h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.4rem;
}

.article h3 {
    font-size: 0.9rem;
    margin: 0.8rem 0 0.4rem 0;
    color: #34495e;
    font-weight: 500;
}

.article p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #333;
    font-size: 0.9rem;
}

.article ul, .article ol {
    margin: 0.8rem 0 0.8rem 1.5rem;
}

.article li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
    color: #333;
    font-size: 0.9rem;
}

.note {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.note p {
    margin: 0;
    color: #0c5460;
}

/* Contact Page Styles */
.contact-page {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.contact-content {
    padding: 1.5rem;
}

.contact-methods h2,
.legal-info h2 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.contact-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #2c3e50;
    font-weight: 500;
}

.contact-card p {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

.contact-link {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.contact-link:hover {
    background: #5a6fd8;
}

.legal-link-buttons {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.legal-button {
    background: #667eea;
    color: #ffffff;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: background-color 0.2s ease;
}

.legal-button:hover {
    background: #5a6fd8;
}

.response-info {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.response-info p {
    margin: 0.5rem 0;
    color: #0c5460;
}

.legal-link-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.legal-button {
    background: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.legal-button:hover {
    background: #5a6fd8;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
    color: #666;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #666;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features h2,
    .legal-links h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .document-header h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .document-content,
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .legal-link-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .document-header h1,
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .article h2 {
        font-size: 1.5rem;
    }
}
