/* Privacy Page Styles */

/* Base styles and font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6, #60a5fa);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #fbbf24);
    --hero-bg: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
}

/* Global styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bg-primary);
}

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

/* Enhanced Header (matching about.css exactly) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Modern Logo Styles (matching about.css exactly) */
.logo {
    position: relative;
}

.logo-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.logo-text-wrapper {
    position: relative;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-word {
    display: inline-block;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.logo-word-1 {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.logo-word-2 {
    color: #60a5fa;
    font-weight: 900;
    letter-spacing: -0.2px;
    position: relative;
}

.logo-word-2::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -3px;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
    opacity: 0.9;
}

/* Logo Hover Effects */
.logo-link:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.logo-link:hover .logo-word-1 {
    color: #f8fafc;
    transform: translateY(-1px);
}

.logo-link:hover .logo-word-2 {
    color: #93c5fd;
    transform: translateY(-1px);
}

.logo-link:hover .logo-word-2::after {
    background: #fcd34d;
    transform: scale(1.2);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--gradient-secondary) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Main content spacing */
.main-content {
    margin-top: 0;
}

/* Hero Section with animated background */
.privacy-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: var(--hero-bg);
    overflow: hidden;
    padding: 80px 0 40px;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 30s linear infinite;
    opacity: 0.6;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.privacy-hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: float 35s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
    33% { transform: translateY(-20px) rotate(120deg); opacity: 0.8; }
    66% { transform: translateY(-10px) rotate(240deg); opacity: 0.9; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.language-selector {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.language-selector a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.language-selector a.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Legal Content */
.legal-content {
    padding: 30px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Information Categories */
.info-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-category h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.info-category ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.info-category li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-category li:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(5px);
}

.info-category li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.usage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(59, 130, 246, 0.05);
}

.usage-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.usage-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Sharing List */
.sharing-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.sharing-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sharing-list li:hover {
    transform: translateX(5px);
    background: rgba(16, 185, 129, 0.05);
}

.sharing-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: rgba(59, 130, 246, 0.05);
}

.security-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.security-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.right-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(16, 185, 129, 0.05);
}

.right-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.right-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Retention Timeline */
.retention-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.retention-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.retention-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: rgba(245, 158, 11, 0.05);
}

.retention-period {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.retention-type {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Transfer Methods */
.transfer-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.transfer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.transfer-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(59, 130, 246, 0.05);
}

.transfer-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.transfer-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Card */
.contact-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-header i {
    color: var(--primary-color);
    font-size: 2rem;
}

.contact-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Highlight Boxes */
.legal-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.legal-highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.legal-important {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(252, 165, 165, 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid #ef4444;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.legal-important i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.security-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.security-highlight i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Legal Footer */
.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.legal-update {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.legal-update i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.back-to-home-container {
    display: flex;
    justify-content: center;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.back-to-home:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Footer Styles (matching about.css) */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
    padding: 2rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-container {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .privacy-hero {
        padding: 70px 0 30px;
        min-height: 35vh;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .legal-content {
        padding: 20px 0;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .retention-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transfer-methods {
        grid-template-columns: 1fr;
    }
    
    .info-category {
        padding: 1.25rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .security-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-item i {
        margin-top: 0;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .logo-word-1 {
        font-size: 1.25rem;
    }
    
    .logo-word-2 {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 70px 0 25px;
        min-height: 30vh;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .legal-content {
        padding: 15px 0;
    }
    
    .legal-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
    
    .retention-timeline {
        grid-template-columns: 1fr;
    }
    
    .language-selector {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .language-selector a {
        text-align: center;
    }
    
    .info-category li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .usage-item,
    .right-item,
    .transfer-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .sharing-list li {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .legal-highlight,
    .legal-important,
    .security-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        width: 28px;
        height: 28px;
    }
    
    .logo-word-1 {
        font-size: 1.125rem;
    }
    
    .logo-word-2 {
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 15px;
    }
    
    .logo-img {
        width: 26px;
        height: 26px;
    }
    
    .logo-word-2::after {
        width: 3px;
        height: 3px;
    }
}

/* Focus styles for accessibility */
.language-selector a:focus,
.back-to-home:focus,
.nav-link:focus,
.nav-link-cta:focus,
.logo-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.logo-link:focus .logo-word-1,
.logo-link:focus .logo-word-2 {
    transform: translateY(-1px);
}

.logo-link:focus .logo-word-2::after {
    transform: scale(1.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .header,
    .privacy-hero,
    .back-to-home-container {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    .legal-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .legal-content {
        padding: 0;
    }
}