:root {
    --red: #E31E24;
    --red-dark: #c41a1f;
    --blue: #005696;
    --blue-light: #0088cc;
    --gray-bg: #F8FAFC;
    --gray-light: #f1f5f9;
    --gray-text: #4A4A4A;
    --gray-title: #1A1A1A;
    --gray-muted: #6B7280;
    --white: #FFFFFF;
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
    color: var(--gray-text);
    background: var(--white);
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Top Bar */
.topbar {
    background: var(--gray-title);
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
}
.topbar .inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}
.topbar a { color: #ccc; }
.topbar a:hover { color: #fff; }
.topbar i { margin-right: 5px; color: var(--red); }
.lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    overflow: hidden;
    margin-left: 4px;
}
.lang-switch button {
    background: transparent;
    border: 0;
    color: #ccc;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active {
    background: var(--red);
    color: #fff;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 18px 0;
}
.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo-wrap img { height: 56px; width: auto; }
.header-tagline {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.4;
}
.header-tagline strong {
    display: block;
    font-size: 16px;
    color: var(--gray-title);
}
.header-contact { text-align: right; }
.header-contact .phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.5px;
}
.header-contact .phone i { margin-right: 6px; }
.header-contact small {
    display: block;
    font-size: 12px;
    color: var(--gray-muted);
    margin-top: 2px;
}

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, #0a1628 0%, #005696 60%, #1a2a4a 100%);
    color: #fff;
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(227,30,36,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.page-hero-meta {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs i { font-size: 10px; color: rgba(255,255,255,0.4); }

/* Legal content */
.legal-section { padding: 64px 0 72px; }
.legal-container { max-width: 860px; }
.legal-intro {
    font-size: 16px;
    color: var(--gray-text);
    background: var(--gray-bg);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin-bottom: 36px;
    line-height: 1.85;
}
.legal-container h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-title);
    margin: 36px 0 14px;
    line-height: 1.4;
}
.legal-container h2:first-child { margin-top: 0; }
.legal-container p {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.85;
    margin-bottom: 14px;
}
.legal-container ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.legal-container ul li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.75;
}
.legal-container ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}
.legal-container a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-container a:hover { color: var(--red); }

/* Cookie page */
.cookie-card {
    background: var(--white);
    border: 1px solid #e8edf2;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}
.cookie-card:hover { box-shadow: var(--shadow); }
.cookie-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 8px;
}
.cookie-card-head h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-title);
    margin: 0;
}
.cookie-card-head .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(0,86,150,0.08);
    color: var(--blue);
    margin-left: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.cookie-card p {
    font-size: 14px;
    color: var(--gray-muted);
    line-height: 1.7;
    margin: 0;
}
.toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: 0.25s;
}
.toggle .slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .slider { background: var(--red); }
.toggle input:checked + .slider::before { transform: translateX(20px); }
.toggle input:disabled + .slider { background: #9ca3af; cursor: not-allowed; opacity: 0.85; }

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #e8edf2;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    border: 2px solid transparent;
    font-family: inherit;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,30,36,0.3); }
.btn-outline { background: transparent; color: var(--gray-title); border-color: #d1d5db; }
.btn-outline:hover { border-color: var(--gray-title); background: var(--gray-light); }
.cookie-status {
    margin-top: 18px;
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
    display: none;
}
.cookie-status.show { display: block; }

/* Footer */
.footer {
    background: #0d1421;
    color: rgba(255,255,255,0.65);
    padding: 36px 0 24px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-link-sep { color: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 768px) {
    .header-tagline { display: none; }
    .page-hero h1 { font-size: 26px; }
    .legal-container h2 { font-size: 19px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cookie-card-head { flex-direction: column; }
}
