        :root {
            --primary-color: #ffffff;
            --secondary-color: #e0e0e0;
            --dark-bg: #000000;
            --card-bg: #1a1a1a;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --accent: #ffffff;
            --border-color: rgba(255, 255, 255, 0.1);
            --hover-bg: rgba(255, 255, 255, 0.05);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
            background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
                radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.05), transparent 65%);
        }

        .bg-animation::after {
            content: '';
            position: absolute;
            inset: -20%;
            background: url('../img/logo-only-white.png') no-repeat center;
            background-size: 100vmin;
            opacity: 0.04;
            filter: blur(15px);
            animation: logoDrift 30s ease-in-out infinite alternate;
        }

        @keyframes logoDrift {
            0% {
                transform: scale(1) translate3d(-3%, -2%, 0) rotate(0deg);
            }

            50% {
                transform: scale(1.04) translate3d(2%, 1%, 0) rotate(2deg);
            }

            100% {
                transform: scale(1.08) translate3d(3%, 4%, 0) rotate(-2deg);
            }
        }

        /* Header */
        header {
            padding: 1.5rem 5%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo img {
            height: 40px;
            width: 50px;
            image-rendering: optimizeQuality;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-secondary);
            letter-spacing: -0.5px;
            transition: color 0.3s;
        }

        .logo:hover .logo-text {
            color: var(--accent);
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

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

        .language-switcher {
            position: relative;
        }

        .language-trigger {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 999px;
            color: var(--text-secondary);
            padding: 0.45rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
        }

        .language-trigger svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s;
        }

        .language-switcher.is-open .language-trigger svg {
            transform: rotate(180deg);
        }

        .language-trigger:hover,
        .language-trigger:focus-visible {
            color: var(--accent);
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.08);
            outline: none;
            box-shadow: 0 8px 18px rgba(255, 255, 255, 0.08);
        }

        .language-menu {
            list-style: none;
            position: absolute;
            top: calc(100% + 0.55rem);
            right: 0;
            min-width: 160px;
            padding: 0.3rem;
            margin: 0;
            background: rgba(16, 16, 16, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(14px);
            opacity: 0;
            transform: translateY(-6px);
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 10;
        }

        .language-switcher.is-open .language-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .language-menu li {
            padding: 0.65rem 0.85rem;
            border-radius: 8px;
            cursor: pointer;
            color: var(--text-secondary);
            transition: background 0.25s, color 0.25s, transform 0.25s;
        }

        .language-menu li:hover,
        .language-menu li:focus-visible {
            background: rgba(255, 255, 255, 0.08);
            color: var(--accent);
            outline: none;
            transform: translateX(2px);
        }

        .language-menu li.is-active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--accent);
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            white-space: nowrap;
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 5% 6rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        /* About page hero override */
        .page-about .hero {
            padding: 6rem 5% 4rem;
        }

        .page-about .hero h1 {
            font-size: 3rem;
        }

        .page-about .hero .subtitle {
            font-size: 1.15rem;
            max-width: 760px;
            margin: 0.75rem auto 0;
        }

        .hero .tagline {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 3rem;
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 5%;
        }

        .contact-wrapper {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-form-container {
            flex: 0 1 460px;
            max-width: 480px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 16px 24px rgba(0, 0, 0, 0.25);
        }

        .contact-form-container .section-title {
            text-align: left;
            margin-bottom: 0.75rem;
        }

        .contact-form-container .section-subtitle {
            text-align: left;
            margin-bottom: 2.5rem;
        }

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

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

        .contact-form .form-field {
            display: flex;
            flex-direction: column;
        }

        .contact-form input,
        .contact-form textarea {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 0.9rem 1.1rem;
            font-size: 1rem;
            color: var(--text-primary);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
            outline: none;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 160px;
        }

        .recaptcha-wrapper {
            display: flex;
            justify-content: center;
            padding: 0.5rem 0;
        }

        .contact-submit {
            align-self: center;
            margin-top: 0.75rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .contact-visual {
            flex: 0 1 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .contact-visual img {
            max-width: min(100%, 420px);
            width: 100%;
            height: auto;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            position: relative;
            z-index: 0;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--dark-bg);
            box-shadow: 0 6px 18px rgba(255, 255, 255, 0.18);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.26);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--hover-bg);
            transform: translateY(-1px) scale(1.01);
            box-shadow: 0 6px 18px rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.65);
        }

        /* Services Section */
        .services {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 5%;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 4rem;
        }

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

        .service-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

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

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Expertise Section */
        .expertise {
            padding: 6rem 0;
            background: rgba(26, 26, 26, 0.5);
        }

        .expertise-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

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

        .expertise-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

        .expertise-card:hover {
            background: var(--hover-bg);
            transform: translateY(-6px);
        }

        .expertise-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .expertise-icon svg {
            width: 40px;
            height: 40px;
        }

        .expertise-card:hover .expertise-icon {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 14px 26px rgba(255, 255, 255, 0.14);
        }

        .expertise-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .expertise-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.95);
            padding: 3rem 5%;
            border-top: 1px solid var(--border-color);
            margin-top: 6rem;
        }

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

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

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            color: var(--text-secondary);
            font-size: 1.5rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 827px) {
            header {
                padding: 1rem 5%;
            }

            nav {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
                flex-wrap: wrap;
            }

            .nav-actions {
                width: 100%;
                order: 3;
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
                margin-top: 0.5rem;
                position: relative;
            }

            .hero {
                padding: 4rem 5% 3rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            /* About page mobile hero override */
            .page-about .hero {
                padding: 5rem 1.5rem 3rem;
            }

            .page-about .hero .subtitle {
                font-size: 1rem;
            }

            .nav-links {
                width: 100%;
                gap: 0.75rem;
                font-size: 0.9rem;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            .logo img {
                height: 40px;
                width: 50px;
                image-rendering: optimizeQuality;
            }

            .logo {
                order: 1;
                flex: 0 0 auto;
            }

            .logo-text {
                font-size: 1.1rem;
            }

            .language-switcher {
                position: absolute;
                top: -3.5rem;
                right: 0;
                width: auto;
                order: unset;
            }

            .language-trigger {
                width: auto;
                justify-content: center;
                padding: 0.4rem 1rem;
                font-size: 0.85rem;
            }

            .language-trigger .language-label {
                display: none;
            }

            .language-trigger::before {
                content: attr(data-active-lang);
                text-transform: uppercase;
                font-weight: 600;
            }

            .nav-links {
                width: 100%;
                order: 4;
            }

            .contact-wrapper {
                flex-direction: column;
            }

            .contact-form-container {
                padding: 2rem;
            }

            .contact-form .form-grid {
                gap: 1rem;
            }

            .contact-submit {
                align-self: center;
            }

            .contact-visual {
                min-height: 240px;
                padding: 1.5rem;
            }

            .services-grid,
            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

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

        /* Loading Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* About page specific styling */
        .about-intro {
            max-width: 1200px;
            margin: 0 auto 6rem;
            padding: 0 5%;
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .intro-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .intro-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .intro-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: var(--card-bg);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--border-color);
        }

        .intro-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.25);
            transform-origin: left center;
        }

        .placeholder-text {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.8);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .team {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        .team-member {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            position: relative;
        }

        .team-member:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .member-photo {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: var(--card-bg);
            aspect-ratio: 3/4;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--border-color);
        }

        .member-info h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .member-role {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .member-description {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .member-expertise {
            list-style: none;
            margin-top: 1.5rem;
        }

        .member-expertise li {
            padding: 0.7rem 0;
            color: var(--text-secondary);
            border-left: 3px solid var(--accent);
            padding-left: 1rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }

        .member-expertise li:hover {
            background: var(--hover-bg);
            transform: translateX(5px);
        }

        .member-expertise li::before {
            content: '▸';
            color: var(--accent);
            margin-right: 0.5rem;
            font-weight: bold;
        }

        .member-links {
            position: absolute;
            top: 2rem;
            right: 2rem;
        }

        .member-links a {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.08);
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        }

        .member-links a svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .member-links a:hover,
        .member-links a:focus-visible {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.35);
            transform: translateY(-2px);
            outline: none;
        }

        .values {
            max-width: 1400px;
            margin: 6rem auto;
            padding: 4rem 5%;
            background: rgba(26, 26, 26, 0.5);
            border-radius: 12px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .value-card {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
            border-top: 4px solid var(--accent);
            transition: all 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .value-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .value-icon svg {
            width: 40px;
            height: 40px;
        }

        .value-card:hover .value-icon {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 14px 26px rgba(255, 255, 255, 0.14);
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Legal pages specific styling */
        .content {
            max-width: 900px;
            margin: 4rem auto;
            padding: 0 5%;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .content h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .content h3 {
            font-size: 1.3rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: var(--secondary-color);
        }

        .content h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            margin-bottom: 0.6rem;
            color: var(--text-primary);
        }

        .content p,
        .content ul {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .content ul {
            padding-left: 1.4rem;
        }

        .content a {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .content a:hover {
            border-bottom-color: var(--accent);
        }

        /* Responsive adjustments for about and legal pages */
        @media (max-width: 968px) {
            .intro-content {
                grid-template-columns: 1fr;
            }

            .team-member {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .member-photo {
                max-width: 300px;
                margin: 0 auto;
            }

            .member-links {
                position: static;
                margin-top: 1rem;
                display: flex;
                justify-content: center;
            }

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

            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 826px) {
            .hero.fade-in {
                padding: 5rem 1.5rem 3rem;
            }

            .content {
                margin: 3rem auto;
                padding: 0 1.5rem;
            }

            .content h1 {
                font-size: 2.1rem;
            }

            .content h2 {
                font-size: 1.6rem;
            }
        }