        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Enhanced professional color palette with more sophistication */
            --primary-red: #C61A1A;
            --primary-red-hover: #A01515;
            --primary-red-light: #E53E3E;
            --dark-red: #8F1212;
            --light-red: #FDE8E8;
            --red-gradient: linear-gradient(135deg, #C61A1A 0%, #A01515 50%, #8F1212 100%);
            --red-gradient-subtle: linear-gradient(135deg, rgba(198, 26, 26, 0.1) 0%, rgba(160, 21, 21, 0.05) 100%);

            --white: #FFFFFF;
            --paper: #F8F9FA;
            --off-white: #F1F3F4;
            --cream: #FEFCF8;

            --gray-50: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #EEEEEE;
            --gray-300: #E0E0E0;
            --gray-400: #BDBDBD;
            --gray-500: #9E9E9E;
            --gray-600: #757575;
            --gray-700: #616161;
            --gray-800: #424242;
            --gray-900: #212121;

            --ink: #0B0F17;
            --text-primary: #212121;
            --text-secondary: #424242;
            --text-muted: #757575;
            --text-light: #9E9E9E;

            --rule: rgba(33, 33, 33, 0.08);
            --rule-hover: rgba(198, 26, 26, 0.15);
            --rule-strong: rgba(33, 33, 33, 0.12);

            /* Enhanced shadow system */
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
            --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-glow: 0 0 20px rgba(198, 26, 26, 0.15);

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-2xl: 24px;

            --content-max: 1280px;
            --gutter: 2rem;

            --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-serif: ui-serif, Georgia, 'Times New Roman', Times, serif;

            /* Professional animations */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: var(--font-sans);
            background: linear-gradient(135deg, #F8F9FA 0%, #F1F3F4 25%, #FEFCF8 100%);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
            font-variant-ligatures: common-ligatures;
            min-height: 100vh;
            position: relative;
        }
            font-variant-ligatures: common-ligatures;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--ink);
            letter-spacing: -0.025em;
            line-height: 1.2;
            font-weight: 700;
        }

        h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        h2 {
            font-size: clamp(1.875rem, 4vw, 3rem);
            font-weight: 700;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 600;
        }

        h4 {
            font-size: clamp(1.25rem, 2.5vw, 1.875rem);
            font-weight: 600;
        }

        p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        /* Subtle “paper” depth */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(1000px 420px at 30% 0%, rgba(198, 26, 26, 0.06), transparent 60%),
                radial-gradient(900px 380px at 80% 10%, rgba(11, 15, 23, 0.05), transparent 55%);
            opacity: 0.9;
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration-thickness: 1px;
            text-underline-offset: 0.16em;
        }

        :focus-visible {
            outline: 3px solid rgba(198, 26, 26, 0.25);
            outline-offset: 2px;
            border-radius: 8px;
        }

        .nav-container,
        .front-container,
        .news-section {
            max-width: var(--content-max);
        }

        /* Language Switcher Button */
        .lang-switcher {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 1001;
            background: var(--white);
            color: var(--ink);
            border: 1px solid var(--rule);
            padding: 10px 14px;
            border-radius: 999px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .lang-switcher:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            border-color: rgba(198, 26, 26, 0.35);
        }

        /* Navigation */
        nav {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--rule);
            box-shadow: var(--shadow-sm);
        }

        .nav-topbar {
            border-bottom: 1px solid var(--rule);
            background: rgba(255, 255, 255, 0.9);
        }

        .nav-topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.45rem var(--gutter);
            font-size: 0.85rem;
            color: rgba(11, 15, 23, 0.72);
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .topbar-sep { opacity: 0.7; }

        .topbar-link {
            color: rgba(11, 15, 23, 0.82);
            text-decoration: none;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 60ch;
        }

        .topbar-link strong {
            color: var(--primary-red);
            font-weight: 800;
        }

        .topbar-right {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .topbar-icon {
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--rule);
            border-radius: 999px;
            background: var(--white);
            color: rgba(11, 15, 23, 0.8);
            text-decoration: none;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .topbar-icon:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-sm);
        }

        .nav-main {
            padding: 0.85rem var(--gutter);
        }

        .nav-actions {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-image {
            height: 40px;
            width: auto;
            display: block;
        }

        .icon-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--rule);
            border-radius: 999px;
            background: var(--white);
            color: var(--ink);
            text-decoration: none;
            box-shadow: var(--shadow-sm);
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
        }

        .icon-btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            border-color: rgba(198, 26, 26, 0.25);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a[aria-current="page"] {
            font-weight: 900;
        }

        .nav-links a[aria-current="page"]::after {
            width: 100%;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

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

        .mobile-menu {
            display: none;
            color: var(--ink);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section with Image */
        /* Front page (newsroom style) */
        .front-page {
            margin-top: 79px;
            padding: 2rem 0 1rem;
        }

        .front-container {
            margin: 0 auto;
            padding: 0 var(--gutter);
        }

        .front-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.5rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--rule);
            margin-bottom: 1.5rem;
        }

        .front-title {
            font-size: 2.7rem;
            line-height: 1.1;
            font-weight: 900;
            margin-bottom: 0.4rem;
        }

        .front-subtitle {
            color: rgba(11, 15, 23, 0.72);
            max-width: 70ch;
        }

        .front-controls {
            flex: 0 0 420px;
            max-width: 100%;
        }

        .search {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.75rem 0.9rem;
            border: 1px solid var(--rule);
            border-radius: 999px;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            color: rgba(11, 15, 23, 0.65);
        }

        .search input {
            border: none;
            outline: none;
            width: 100%;
            font: inherit;
            color: var(--ink);
            background: transparent;
        }

        .front-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 1.5rem;
            align-items: start;
        }

        .featured-card {
            background: var(--white);
            border: 1px solid var(--rule);
            border-radius: var(--radius-lg);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            grid-template-rows: none;
            min-height: 380px;
            position: relative;
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--red-gradient);
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--rule-hover);
        }

        .featured-card:hover::before {
            opacity: 1;
        }

        .featured-media {
            position: relative;
            overflow: hidden;
            background: #0b0f17;
        }

        .featured-media,
        .featured-body {
            min-width: 0;
        }

        .featured-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(10%) contrast(1.05);
            transition: transform 0.35s ease;
        }

        .featured-card:hover .featured-media img {
            transform: scale(1.03);
        }

        .featured-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
        }

        .featured-kicker {
            position: absolute;
            left: 1rem;
            top: 1rem;
            z-index: 2;
            background: rgba(11, 15, 23, 0.78);
            color: var(--white);
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            backdrop-filter: blur(6px);
        }

        .featured-body {
            padding: 1.35rem 1.35rem 1.2rem;
            display: flex;
            flex-direction: column;
        }

        .meta-line {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            color: rgba(11, 15, 23, 0.65);
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }

        .meta {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .featured-title {
            font-size: 1.75rem;
            line-height: 1.2;
            font-weight: 900;
            margin-bottom: 0.6rem;
        }

        .featured-dek {
            color: rgba(11, 15, 23, 0.78);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .featured-cta {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-red);
            font-weight: 800;
        }

        .featured-stack {
            display: grid;
            gap: 0.75rem;
        }

        .stack-item {
            background: var(--white);
            border: 1px solid var(--rule);
            border-radius: var(--radius-sm);
            padding: 0.95rem 1rem;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow-sm);
            transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
            display: grid;
            gap: 0.35rem;
        }

        .stack-item:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            border-color: rgba(198, 26, 26, 0.25);
        }

        .stack-kicker {
            font-size: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(11, 15, 23, 0.7);
        }

        .stack-title {
            font-weight: 800;
            color: var(--ink);
            line-height: 1.35;
        }

        .stack-meta {
            color: rgba(11, 15, 23, 0.62);
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .latest-box {
            background: var(--white);
            border: 1px solid var(--rule);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .latest-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.95rem 1rem;
            border-bottom: 1px solid var(--rule);
        }

        .latest-header h3 {
            font-size: 1.05rem;
            font-weight: 900;
        }

        .latest-link {
            color: var(--primary-red);
            font-weight: 800;
            text-decoration: none;
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
        }

        .latest-list {
            list-style: none;
        }

        .latest-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.85rem 1rem;
            text-decoration: none;
            color: rgba(11, 15, 23, 0.88);
            border-top: 1px solid var(--rule);
        }

        .latest-list li:first-child a {
            border-top: none;
        }

        .latest-list a:hover {
            background: rgba(198, 26, 26, 0.04);
        }

        .latest-list a i {
            color: rgba(11, 15, 23, 0.55);
        }


        /* Legacy hero styles are intentionally removed in favor of .front-page */

        /* News Sections */
        .news-section {
            padding: 3.25rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .news-section:nth-child(even) { background: transparent; }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
            gap: 1rem;
            padding-bottom: 0.9rem;
            border-bottom: 1px solid var(--rule);
        }

        .category-title {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .category-title i {
            color: var(--primary-red);
        }

        .view-all {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .view-all:hover {
            gap: 0.75rem;
        }

        .news-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .news-grid.full-page {
            max-width: 100%;
        }

        /* Featured article styling */
        .news-card.featured {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--rule);
            text-decoration: none;
            color: inherit;
            transition: all var(--transition-normal);
            margin-bottom: 3rem;
        }

        .news-card.featured:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--rule-hover);
        }

        .news-card.featured .news-image {
            height: 300px;
        }

        .news-card.featured .news-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* List-style article cards */
        .news-card.list-item {
            display: flex;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--rule);
            position: relative;
            min-height: 140px;
        }

        .news-card.list-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--rule-hover);
        }

        .news-card.list-item .news-image {
            width: 200px;
            height: 140px;
            flex-shrink: 0;
        }

        .news-card.list-item .news-content {
            flex: 1;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-card.list-item .news-title {
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card.list-item .news-excerpt {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .news-card.list-item .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .news-image {
            width: 100%;
            height: 190px;
            position: relative;
            overflow: hidden;
            background: #0b0f17;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-card:hover .news-image img { transform: scale(1.04); }

        .news-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
        }

        .news-category-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(11, 15, 23, 0.78);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 2;
            backdrop-filter: blur(6px);
        }

        .news-content {
            padding: 1.15rem 1.15rem 1.1rem;
        }

        .news-date {
            font-size: 0.85rem;
            color: var(--gray-700);
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-title {
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--ink);
            line-height: 1.4;
            margin-bottom: 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-excerpt {
            font-size: 0.9rem;
            color: var(--gray-800);
            opacity: 0.82;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            color: var(--primary-red);
            font-weight: 800;
            font-size: 0.9rem;
            transition: gap 0.3s ease;
        }

        .news-card:hover .read-more {
            gap: 0.75rem;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--gray-900) 0%, #000000 100%);
            color: var(--white);
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .contact-info > p {
            opacity: 0.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            background: rgba(255, 255, 255, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .submit-btn {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
        }

        .map-container {
            width: 100%;
            height: 450px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%) contrast(1.1);
        }

        /* Team Section */
        .team-section {
            padding: 5rem 2rem;
            background: var(--white);
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
            border-color: var(--light-red);
        }

        .team-card:hover::before {
            transform: scaleX(1);
        }

        .team-card.leader {
            transform: scale(1.05);
            border: 3px solid var(--primary-red);
            z-index: 2;
        }

        .team-card.leader:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 700;
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
        }

        .team-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.5rem;
        }

        .role {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .team-card p {
            color: var(--gray-800);
            font-size: 0.95rem;
        }

        .badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary-red);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Article Page */
        .article-section {
            padding: 2rem;
            max-width: 1200px;
            margin: 79px auto 0;
            background: var(--white);
            min-height: 100vh;
        }

        .article-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }

        .article-category {
            display: inline-block;
            background: var(--red-gradient);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-xl);
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .article-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .article-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius-xl);
            margin-bottom: 3rem;
            box-shadow: var(--shadow-lg);
        }

        .article-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-primary);
            max-width: none;
        }

        .article-content p {
            margin-bottom: 1.75rem;
            text-align: justify;
        }

        .article-content p:first-child {
            font-size: 1.25rem;
            line-height: 1.7;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: gap 0.3s ease;
        }

        .back-btn:hover {
            gap: 0.75rem;
        }.social-link {
            width: 40px;
            height: 40px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
        }

        .social-link:hover {
            transform: translateY(-1px);
            border-color: rgba(198, 26, 26, 0.45);
            background: rgba(198, 26, 26, 0.10);
        }/* Mobile Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--gray-900);
            z-index: 1002;
            padding: 2rem;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-header h3 {
            color: var(--white);
            font-size: 1.5rem;
        }

        .close-menu {
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.75rem 0;
            display: block;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: var(--primary-red);
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
        }

        .overlay.active {
            display: block;
        }

        /* Scroll to top button */
        a.scroll-top,
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.92);
            color: var(--white);
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 1;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            z-index: 999;
            border: 1px solid var(--rule);
            color: var(--ink);
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            border-color: rgba(198, 26, 26, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .lang-switcher {
                top: 80px;
                right: 10px;
                padding: 10px 18px;
                font-size: 12px;
            }

            .news-grid,
            .news-grid.full-page {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 350px;
            }

        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .nav-topbar { display: none; }

            .front-page {
                margin-top: 51px;
            }

            .front-header {
                flex-direction: column;
                align-items: stretch;
            }

            .front-controls {
                flex-basis: auto;
            }

            .front-grid {
                grid-template-columns: 1fr;
            }

            .featured-card {
                grid-template-columns: 1fr;
                min-height: 0;
            }

            .featured-media {
                height: 250px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }

            .news-grid.full-page {
                grid-template-columns: 1fr;
            }
            
            .section-header {
                flex-direction: column;
                text-align: center;
            }

            .mobile-nav {
                display: block;
            }

            .article-title {
                font-size: 1.8rem;
            }
        }

/* No-JS fallback */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .mobile-menu,
    .mobile-nav,
    .overlay,
    .scroll-top {
        display: none !important;
    }
}
