/* === BASE STYLES === */:root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #F7B801;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
            --gradient-2: linear-gradient(135deg, #004E89 0%, #1A1A2E 100%);
            --gradient-3: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(247,184,1,0.1) 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
            --shadow-xl: 0 12px 60px rgba(0,0,0,0.24);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body, html {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: var(--light);
            overflow-x: hidden;
        }

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

        .page-offset {
            padding-top: 8rem;
        }

        @media (max-width: 768px) {
            .page-offset {
                padding-top: 9rem;
            }
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        h4 {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--dark);
        }

        p {
            margin-bottom: 1rem;
            font-size: clamp(0.95rem, 1.5vw, 1.125rem);
            color: #2C2C2C;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
            padding: 0;
        }

        ul li {
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            position: relative;
            color: #2C2C2C;
        }

        ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            background: var(--gradient-1);
            border-radius: 50%;
        }

        strong {
            color: var(--secondary);
            font-weight: 600;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .promo-image {
            display: block;
    width: 100%;
    max-width: 700px;
            margin: 10px auto 20px;
            border-radius: 16px;
        }

        /* === MOBILE UX SAFEGUARDS === */
        .nav-list a,
        .btn-primary,
        .cta-button {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .hamburger {
                min-height: 44px;
                min-width: 44px;
                padding: 0.75rem;
            }
        }

        .table-scroll,
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .table-scroll table,
        .table-responsive table {
            min-width: 600px;
        }

        @media (min-width: 769px) {
            .table-scroll table,
            .table-responsive table {
                min-width: 100%;
            }
        }

        .btn-primary {
            display: inline-block;
            padding: 16px 40px;
            background: var(--gradient-1);
            color: white;
            font-weight: 600;
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .btn-standalone {
            display: block;
            width: fit-content;
        }

        .card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border-radius: 12px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        table thead {
            background: var(--gradient-2);
            color: white;
        }

        table th,
        table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        table tbody tr {
            transition: background 0.3s ease;
        }

        table tbody tr:hover {
            background: var(--gradient-3);
        }

        table td {
            color: #2C2C2C;
        }

        /* === LAYOUT STYLES === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            padding: 1rem 0;
        }

        header .header-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .header-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .header-cta {
            white-space: nowrap;
        }

        .logo {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            text-decoration: none;
            color: inherit;
            display: inline-block;
        }

        .logo:hover {
            text-decoration: none;
        }

        .main-nav {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

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

        .nav-list li {
            padding: 0;
            margin: 0;
        }

        .nav-list li::before {
            display: none;
        }

        .nav-list a {
            font-weight: 500;
            font-size: 1rem;
            color: var(--dark);
            position: relative;
            padding: 0.5rem 0;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        footer {
            background: var(--gradient-2);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 5rem;
        }

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

        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-section ul li {
            color: rgba(255,255,255,0.8);
            padding-left: 0;
            margin-bottom: 0.5rem;
        }

        .footer-section ul li::before {
            display: none;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            transition: color 0.3s ease;
        }

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

        .footer-section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.5rem;
        }

@media (max-width: 768px) {
            header .header-layout {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .header-top {
                width: 100%;
            }

            .hamburger {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                transition: left 0.4s ease;
                padding: 2rem;
            }

            .main-nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-list li {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

            .nav-list a {
                display: block;
                font-size: 1.2rem;
            }

            header .cta-button {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }

            .cards-grid-3 .container > div:not(.card),
            .cards-grid-2 .container > div:not(.card) {
                grid-template-columns: 1fr;
            }

            table {
                font-size: 0.85rem;
            }

            table th,
            table td {
                padding: 0.75rem 0.5rem;
            }
        }