            :root {
            --primary: #8b1235;
            --primary-dark: #770f28;
            --primary-light: rgba(139, 18, 53, 0.08);
            --primary-mid: rgba(139, 18, 53, 0.16);
            --accent: #117bb7;
            --accent-green: #01a163;
            --accent-yellow: #ee9b12;
            --secondary: #385398;
            --text-dark: #122033;
            --text-muted: #667085;
            --bg-body: #FFFFFF;
            --bg-light: #F5F7FB;
            --shadow-sm: 0 2px 12px rgba(139, 18, 53, 0.08);
            --shadow-md: 0 8px 28px rgba(139, 18, 53, 0.14);
            --shadow-lg: 0 20px 50px rgba(139, 18, 53, 0.18);
            --radius: 12px;
            --radius-lg: 20px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--secondary);
        }

        a {
            text-decoration: none;
            transition: all .3s ease;
        }

        /* ── HEADER ── */
        .head-data,
        .head-data2 {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            background: #fff;
            box-shadow: 0 2px 16px rgba(139, 18, 53, .10);
        }

        .head-data {
            display: block;
        }

        .head-data2 {
            display: none;
        }

        .head-data .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }

        .epn-logo-img {
            height: 56px;
            object-fit: contain;
        }

        .header-contacts {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .header-contacts a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: .88rem;
            color: var(--text-dark);
            padding: 8px 14px;
            border-radius: 8px;
            border: 1.5px solid transparent;
        }

        .header-contacts a:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        .header-contacts a i {
            color: var(--primary);
        }

        .header-contacts .divider {
            width: 1px;
            height: 28px;
            background: #e0e3f5;
        }

        @media(max-width:991px) {
            .head-data {
                display: none !important
            }

            .head-data2 {
                display: block !important
            }
        }

        .head-data2 .inner2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 16px;
        }

        .head-data2 .epn-logo-img {
            height: 38px;
        }

        .mobile-icons {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .mobile-icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 1rem;
            transition: all .25s ease;
            border: none;
        }

        .mobile-icon-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ── BUTTONS ── */
        .btn-primary-custom {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 13px 30px;
            border-radius: 9px;
            font-weight: 700;
            font-size: .95rem;
            letter-spacing: .3px;
            transition: all .3s ease;
            box-shadow: 0 4px 18px rgba(139, 18, 53, .28);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 18, 53, .38);
        }

        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 11px 28px;
            border-radius: 9px;
            font-weight: 700;
            background: transparent;
            font-size: .95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: #fff;
        }

        
        /* ── FOOTER ── */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, .65);
            padding: 80px 0 24px;
        }

        .footer-brand img {
            height: 54px;
            margin-bottom: 18px;
            filter: brightness(0) invert(1);
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .7);
            margin-right: 8px;
            transition: all .3s ease;
            font-size: .85rem;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, .2);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-title {
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: .9rem;
        }

        .footer-links a:hover {
            color: rgba(255, 255, 255, .95);
            padding-left: 4px;
        }

        .footer-bottom {
            margin-top: 56px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
            font-size: .85rem;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* ── SCROLLBAR ── */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-mid);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* ── RESPONSIVE ── */
