/* Corporate Styles - About & Security Pages */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0ea5e9;
    --accent: #6366f1;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.lang-switcher-top {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 8px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.lang-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* Navigation */
.corporate-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow);
}

.corporate-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand h1 {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.brand-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}


/* Hero Sections */
.hero-about,
.hero-security {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.shield-icon,
.lock-icon {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/></svg>') no-repeat center;
    background-size: contain;
    animation: float 6s ease-in-out infinite;
}

.lock-icon {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6z"/></svg>') no-repeat center;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.security-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.vision-card h2,
.mission-card h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.vision-card p,
.mission-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
}

.story-text {
    max-width: 900px;
    margin: 0 auto;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}


/* Technology Stack */
.tech-section {
    padding: 80px 0;
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tech-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Security Sections */
.security-first {
    padding: 80px 0;
    background: var(--bg-light);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.security-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.security-card.highlight {
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(99, 102, 241, 0.05));
}

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.security-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cert-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    color: white;
}

.gdpr-logo {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

.kvkk-logo {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.ssl-logo {
    background: linear-gradient(135deg, #10b981, #059669);
}

.iso-logo {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.cert-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
}

.cert-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cert-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cert-link:hover {
    text-decoration: underline;
}

.cert-badge {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.transparency-text h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.transparency-text > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.transparency-list {
    list-style: none;
}

.transparency-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.list-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
}

.transparency-list strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 16px;
}

.transparency-list p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.audit-dashboard {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.dashboard-icon {
    font-size: 24px;
}

.dashboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.item-label {
    font-size: 14px;
    color: var(--text-light);
}

.item-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-footer {
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--success);
}


/* Security Features Grid */
.features-security {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.corporate-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

body.rtl .section-grid,
body.rtl .security-grid,
body.rtl .cert-grid,
body.rtl .features-grid {
    direction: rtl;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-values,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transparency-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
    
    .team-stats,
    .cert-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .lang-switcher-top {
        top: 10px;
        right: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.security-card,
.cert-card,
.value-card,
.tech-card {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* ===== LEGAL PAGES STYLES ===== */

.legal-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1e293b 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-header h1 {
    font-size: 48px;
    color: #e2e8f0;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: #94a3b8;
    font-size: 16px;
    font-weight: 500;
}

.compliance-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 24px;
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
}

.legal-body {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-body h2 {
    color: #e2e8f0;
    font-size: 32px;
    margin: 50px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(99, 102, 241, 0.4);
    font-weight: 700;
    position: relative;
}

.legal-body h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.legal-body h2:first-of-type {
    margin-top: 0;
}

.legal-body h3 {
    color: #a5b4fc;
    font-size: 24px;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.legal-body h4 {
    color: #c7d2fe;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.legal-body p {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-body ul {
    color: #cbd5e1;
    line-height: 1.9;
    margin: 20px 0 20px 40px;
    list-style-type: none;
}

.legal-body ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.legal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #86efac;
    font-weight: bold;
    font-size: 18px;
}

.legal-body ol {
    color: #cbd5e1;
    line-height: 1.9;
    margin: 20px 0 20px 40px;
}

.legal-body ol li {
    margin-bottom: 12px;
}

.legal-body a {
    color: #a5b4fc;
    text-decoration: none;
    border-bottom: 1px solid rgba(165, 180, 252, 0.3);
    transition: all 0.3s ease;
}

.legal-body a:hover {
    color: #c7d2fe;
    border-bottom-color: #c7d2fe;
}

.legal-body strong {
    color: #e2e8f0;
    font-weight: 600;
}

.legal-body code {
    background: rgba(99, 102, 241, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    color: #c7d2fe;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Info Boxes */
.info-box {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.info-box h4 {
    color: #93c5fd;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box ul {
    margin-left: 20px;
}

.warning-box {
    background: rgba(234, 179, 8, 0.1);
    border-left: 4px solid #eab308;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.warning-box strong {
    color: #fde047;
}

/* Tables */
.data-table, .cookie-table table, .error-table, .rate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    overflow: hidden;
}

.data-table th, .cookie-table th, .error-table th, .rate-table th {
    background: rgba(99, 102, 241, 0.3);
    padding: 16px;
    text-align: left;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 15px;
}

.data-table td, .cookie-table td, .error-table td, .rate-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
}

.data-table tr:last-child td,
.cookie-table tr:last-child td,
.error-table tr:last-child td,
.rate-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover,
.cookie-table tr:hover,
.error-table tr:hover,
.rate-table tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

/* Rights Grid */
.rights-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.right-card, .contact-card {
    background: rgba(99, 102, 241, 0.1);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.right-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.right-card h4, .contact-card h4 {
    color: #a5b4fc;
    margin-bottom: 12px;
    font-size: 18px;
}

.right-card p, .contact-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

/* Cookie Settings Box */
.cookie-settings-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.cookie-settings-box h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 24px;
}

.cookie-settings-btn {
    padding: 16px 45px;
    border-radius: 50px;
    border: none;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-settings-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Event List */
.event-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.event-list li {
    padding: 15px 20px;
    margin: 12px 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.event-list li:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateX(5px);
}

/* Legal Footer */
.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-footer p {
    color: #94a3b8;
    margin: 12px 0;
    font-size: 15px;
}

.legal-footer strong {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 36px;
    }

    .legal-body {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .legal-body h2 {
        font-size: 26px;
    }

    .legal-body h3 {
        font-size: 20px;
    }

    .rights-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .cookie-settings-box {
        padding: 30px 20px;
    }

    .data-table, .cookie-table table {
        font-size: 14px;
    }

    .data-table th, .data-table td,
    .cookie-table th, .cookie-table td {
        padding: 12px 8px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #e2e8f0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0e1a;
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

