    :root {
            --neon-blue: #0ff0fc;
            --bright-yellow: #ffde00;
            --dark-blue: #001233;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-gray);
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
        }

        .btn-primary {
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
        }

        .btn-primary:hover {
            background-color: var(--neon-blue);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Header */
        header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--neon-blue);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            gap: 30px;
        }

        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }

        nav a:hover {
            color: var(--neon-blue);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 18, 51, 0.85), rgba(0, 18, 51, 0.9)), url('ban.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

         :root {
            --neon-blue: #0ff0fc;
            --bright-yellow: #ffde00;
            --dark-blue: #001233;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-gray);
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        a {
            text-decoration: none;
            color: var(--neon-blue);
            transition: var(--transition);
        }

        a:hover {
            color: var(--dark-blue);
        }

        ul, ol {
            margin-left: 1.5em;
            margin-bottom: 1em;
        }

        li {
            margin-bottom: 0.5em;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--neon-blue);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            gap: 30px;
            margin: 0;
        }

        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            color: var(--white);
        }

        nav a:hover {
            color: var(--neon-blue);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            margin-top: 100px;
            margin-bottom: 60px;
        }

        .page-header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-top: 0;
        }

        .page-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #e0e0e0;
        }

        .terms-content {
            background-color: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            color: var(--dark-blue);
            border-bottom: 2px solid var(--bright-yellow);
            padding-bottom: 10px;
        }

        .terms-section p {
            margin-bottom: 15px;
        }

        .highlight {
            background-color: rgba(255, 222, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--bright-yellow);
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        .warning-box {
            background-color: rgba(255, 0, 0, 0.05);
            padding: 20px;
            border-left: 4px solid #ff0000;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        th {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
            font-size: 32px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                padding: 20px 0;
                max-height: 400px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .terms-content {
                padding: 30px 20px;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .terms-content {
                padding: 20px 15px;
            }
        }
         :root {
            --neon-blue: #0ff0fc;
            --bright-yellow: #ffde00;
            --dark-blue: #001233;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-gray);
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        a {
            text-decoration: none;
            color: var(--neon-blue);
            transition: var(--transition);
        }

        a:hover {
            color: var(--dark-blue);
        }

        ul, ol {
            margin-left: 1.5em;
            margin-bottom: 1em;
        }

        li {
            margin-bottom: 0.5em;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--neon-blue);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            gap: 30px;
            margin: 0;
        }

        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            color: var(--white);
        }

        nav a:hover {
            color: var(--neon-blue);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            margin-top: 100px;
            margin-bottom: 60px;
        }

        .page-header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-top: 0;
        }

        .page-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #e0e0e0;
        }

        .policy-content {
            background-color: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .policy-section {
            margin-bottom: 40px;
        }

        .policy-section h2 {
            color: var(--dark-blue);
            border-bottom: 2px solid var(--bright-yellow);
            padding-bottom: 10px;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .highlight {
            background-color: rgba(255, 222, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--bright-yellow);
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        .contact-info {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }

        .contact-info h3 {
            color: var(--dark-blue);
            margin-top: 0;
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
            font-size: 32px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                padding: 20px 0;
                max-height: 400px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .policy-content {
                padding: 30px 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .policy-content {
                padding: 20px 15px;
            }
        }
          :root {
            --neon-blue: #0ff0fc;
            --bright-yellow: #ffde00;
            --dark-blue: #001233;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-gray);
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        a {
            text-decoration: none;
            color: var(--neon-blue);
            transition: var(--transition);
        }

        a:hover {
            color: var(--dark-blue);
        }

        ul, ol {
            margin-left: 1.5em;
            margin-bottom: 1em;
        }

        li {
            margin-bottom: 0.5em;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--neon-blue);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        nav ul {
            display: flex;
            gap: 30px;
            margin: 0;
        }

        nav a {
            font-weight: 600;
            padding: 5px 0;
            position: relative;
            color: var(--white);
        }

        nav a:hover {
            color: var(--neon-blue);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .main-content {
            margin-top: 100px;
            margin-bottom: 60px;
        }

        .page-header {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-top: 0;
        }

        .page-header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            color: #e0e0e0;
        }

        .cookies-content {
            background-color: var(--white);
            padding: 50px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .cookies-section {
            margin-bottom: 40px;
        }

        .cookies-section h2 {
            color: var(--dark-blue);
            border-bottom: 2px solid var(--bright-yellow);
            padding-bottom: 10px;
        }

        .cookies-section p {
            margin-bottom: 15px;
        }

        .highlight {
            background-color: rgba(255, 222, 0, 0.1);
            padding: 20px;
            border-left: 4px solid var(--bright-yellow);
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        th {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }

        .essential {
            background-color: #d4edda;
            color: #155724;
        }

        .functional {
            background-color: #cce5ff;
            color: #004085;
        }

        .analytics {
            background-color: #fff3cd;
            color: #856404;
        }

        .marketing {
            background-color: #f8d7da;
            color: #721c24;
        }

        .cookie-controls {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }

        .cookie-controls h3 {
            color: var(--dark-blue);
            margin-top: 0;
        }

        .control-option {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .control-option label {
            margin-left: 10px;
            font-weight: 600;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn:hover {
            background-color: var(--neon-blue);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
            display: none;
        }

        .cookie-banner-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
            margin-bottom: 15px;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-banner-btn {
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .cookie-banner-accept {
            background-color: var(--bright-yellow);
            color: var(--dark-blue);
            border: none;
        }

        .cookie-banner-settings {
            background-color: transparent;
            color: var(--white);
            border: 1px solid var(--neon-blue);
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
            font-size: 32px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            list-style: none;
            margin-left: 0;
        }

        .footer-column ul li a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                padding: 20px 0;
                max-height: 400px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .cookies-content {
                padding: 30px 20px;
            }
            
            table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 28px;
            }
            
            .cookies-content {
                padding: 20px 15px;
            }
        }
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

        /* Casinos Section */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-blue);
        }

        .section-title h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--neon-blue);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .casinos-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .casino-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            border-color: var(--bright-yellow);
        }

        .casino-header {
            display: flex;
            align-items: center;
            padding: 30px;
            background: var(--dark-blue);
            color: var(--white);
        }

        .casino-logo {
            width: 180px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px;
            background: var(--white);
            border-radius: 8px;
            padding: 10px;
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .casino-info h3 {
            font-size: 28px;
            margin-bottom: 5px;
            color: var(--bright-yellow);
        }

        .casino-rating {
            color: var(--neon-blue);
            font-size: 18px;
        }

        .casino-content {
            display: flex;
            padding: 30px;
        }

        .casino-advantages {
            flex: 1;
            padding-right: 30px;
        }

        .casino-advantages h4 {
            margin-bottom: 20px;
            color: var(--dark-blue);
            font-size: 22px;
        }

        .advantages-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .advantage-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .advantage-item i {
            color: var(--bright-yellow);
            margin-right: 10px;
            font-size: 18px;
        }

        .casino-action {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-left: 30px;
            border-left: 1px solid #ddd;
            min-width: 250px;
        }

        .bonus-amount {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        .bonus-text {
            font-size: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--bright-yellow);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #e0e0e0;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 20px 30px;
            background-color: var(--dark-blue);
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background-color: var(--light-gray);
        }

        .faq-item.active .faq-answer {
            padding: 30px;
            max-height: 500px;
        }

        /* Responsible Gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--light-gray);
            text-align: center;
        }

        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .rg-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--dark-blue);
        }

        .rg-content p {
            margin-bottom: 30px;
            font-size: 18px;
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .rg-link {
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .rg-link:hover {
            transform: translateY(-5px);
            background: var(--bright-yellow);
        }

        .rg-link i {
            color: var(--neon-blue);
            margin-right: 10px;
            font-size: 20px;
        }

        .age-restriction {
            display: inline-flex;
            align-items: center;
            background: var(--dark-blue);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 24px;
        }

        .age-restriction i {
            color: var(--bright-yellow);
            margin-right: 10px;
            font-size: 30px;
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo .logo {
            margin-bottom: 20px;
            font-size: 32px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .footer-column {
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--neon-blue);
            bottom: 0;
            left: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .casino-content {
                flex-direction: column;
            }
            
            .casino-advantages {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .advantages-list {
                grid-template-columns: 1fr;
            }
            
            .casino-action {
                padding-left: 0;
                border-left: none;
                border-top: 1px solid #ddd;
                padding-top: 30px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                position: relative;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-blue);
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: var(--transition);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                padding: 20px 0;
                max-height: 400px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .casino-header {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-logo {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }