    :root {
            --primary-blue: #1e3799;
            --secondary-blue: #4a69bd;
            --accent-blue: #0c2461;
            --light-blue: #dff9fb;
            --dark-blue: #0a3d62;
            --success-green: #2ed573;
            --danger-red: #eb3b5a;
            --warning-yellow: #f7b731;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
        /* Header & Navigation */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
        }
        
        .navbar-brand img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-link {
            font-weight: 500;
            color: #333 !important;
            margin: 0 8px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        
        .nav-link.active {
            color: var(--primary-blue) !important;
            font-weight: 600;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 3px;
        }
        
        .btn-nord {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-nord:hover {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
            color: white;
        }
        
        .btn-nord-lg {
            padding: 15px 35px;
            font-size: 1.1rem;
        }
        
        /* IP Status Bar */
        .ip-status-bar {
            background-color: #0a3d62;
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .ip-status-item {
            display: flex;
            align-items: center;
            margin-right: 30px;
        }
        
        .ip-status-item i {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .status-unprotected {
            color: var(--danger-red);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('https://nordvpn.us.cc/assets/images/site-icon-256.png') no-repeat center right;
            background-size: contain;
            opacity: 0.1;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: rgba(30, 55, 153, 0.1);
            color: var(--primary-blue);
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 700px;
        }
        
        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            background: white;
            padding: 12px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .hero-feature i {
            color: var(--success-green);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Stats Section */
        .stats-section {
            background-color: white;
            padding: 60px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        /* Features Section */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary-blue);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            background: rgba(30, 55, 153, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
        
        /* Security Features */
        .security-features {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .security-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .security-card:hover {
            transform: translateY(-5px);
        }
        
        .security-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            background: #f1f2f6;
            border-radius: 50px;
            padding: 5px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-toggle-btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            background: transparent;
            color: #666;
            transition: all 0.3s;
        }
        
        .pricing-toggle-btn.active {
            background: var(--primary-blue);
            color: white;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
            border: 2px solid #eee;
            height: 100%;
        }
        
        .pricing-card.featured {
            border: 3px solid var(--primary-blue);
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -35px;
            background-color: var(--primary-blue);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
        
        .pricing-price {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }
        
        .pricing-period {
            color: #777;
            margin-bottom: 20px;
        }
        
        .pricing-savings {
            background-color: rgba(46, 213, 115, 0.1);
            color: var(--success-green);
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 25px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: #555;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--success-green);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .pricing-features li.disabled {
            color: #ccc;
        }
        
        .pricing-features li.disabled i {
            color: #ccc;
        }
        
        /* Testimonials */
        .testimonials-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary-blue);
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid #eee;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }
        
        .author-title {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            background-color: #f8f9fa;
            padding: 20px 25px;
            font-weight: 600;
            color: var(--dark-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f1f2f6;
        }
        
        .faq-answer {
            padding: 25px;
            background-color: white;
            border-top: 1px solid #eee;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question {
            background-color: #f1f2f6;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            padding: 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .cta-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-blue);
            padding: 15px 40px;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: none;
        }
        
        .btn-light:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
            color: var(--primary-blue);
        }
        
        .guarantee-badge {
            margin-top: 30px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .guarantee-badge i {
            margin-right: 10px;
            color: var(--success-green);
        }
        
        /* Footer */
        .footer {
            background-color: #0a3d62;
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-about {
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .footer-links-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .affiliate-disclaimer {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .pricing-card.featured {
                transform: scale(1.02);
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .ip-status-item {
                margin-right: 15px;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-section {
                padding: 70px 0;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-text {
                font-size: 1.1rem;
            }
            
            .pricing-toggle {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            
            .pricing-toggle-btn {
                width: 100%;
                margin-bottom: 5px;
            }
            
            .ip-status-bar {
                font-size: 0.8rem;
            }
            
            .ip-status-item {
                margin-right: 10px;
                margin-bottom: 5px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.9rem;
            }
            
            .btn-nord, .btn-light {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .hero-feature {
                width: 100%;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .pricing-price {
                font-size: 2.5rem;
            }
            
            .feature-card, .testimonial-card, .pricing-card {
                margin-bottom: 30px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* Additional Styles */
        .highlight {
            color: var(--primary-blue);
            font-weight: 700;
        }
        
        .text-primary {
            color: var(--primary-blue) !important;
        }
        
        .badge-nord {
            background-color: var(--primary-blue);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        
        .trust-badge {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #555;
        }
        
        .trust-badge i {
            color: var(--primary-blue);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            background-color: var(--accent-blue);
            transform: translateY(-3px);
        }
        
        /* Hero Section with Image CSS */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(30, 55, 153, 0.1);
    color: #1e3799;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0a3d62;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #1e3799;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(30, 55, 153, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.hero-feature:hover {
    transform: translateY(-3px);
}

.hero-feature i {
    color: #2ed573;
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-nord {
    background-color: #1e3799;
    border-color: #1e3799;
    color: white;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nord:hover {
    background-color: #0c2461;
    border-color: #0c2461;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
    color: white;
}

.btn-nord-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-outline-primary {
    border: 2px solid #1e3799;
    color: #1e3799;
    background: transparent;
    padding: 13px 35px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: #1e3799;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    text-align: center;
    padding: 30px;
}

.hero-main-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(30, 55, 153, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0a3d62;
    animation: float-element 4s ease-in-out infinite;
    z-index: 2;
}

.floating-element i {
    color: #1e3799;
    font-size: 1.1rem;
}

.element-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 30%;
    left: 0;
    animation-delay: 2s;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float-element {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Stats Overlay */
.stats-overlay {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
    padding: 0 15px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3799;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-main-image {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image-wrapper {
        margin-top: 50px;
        padding: 20px;
    }
    
    .hero-main-image {
        max-width: 250px;
    }
    
    .floating-element {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .stats-overlay {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-feature {
        margin-bottom: 10px;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .floating-element {
        display: none; /* Hide on small screens for better UX */
    }
    
    .stats-overlay {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .btn-nord, .btn-outline-primary {
        width: 100%;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-main-image {
        max-width: 200px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Comparison Table */
.comparison-section {
    background-color: #f8f9fa;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.comparison-table th:first-child {
    background-color: #f8f9fa;
    color: var(--dark-blue);
}

.comparison-table .nord-col {
    background-color: rgba(30, 55, 153, 0.1);
    color: var(--primary-blue);
    font-weight: 700;
}

.comparison-table th:nth-child(3) {
    background-color: #f8f9fa;
    color: #666;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.comparison-table tbody tr:hover {
    background-color: rgba(30, 55, 153, 0.03);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-blue);
    width: 30%;
}

.comparison-table .nord-col {
    background-color: rgba(30, 55, 153, 0.05);
    color: var(--dark-blue);
    font-weight: 600;
}

.comparison-table td i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.comparison-table td:first-child i {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px;
        font-size: 0.95rem;
    }
}
/* How It Works */
.how-it-works-section {
    background-color: white;
}

.steps-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    background-color: var(--primary-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-left: 30px;
    flex: 1;
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.step:hover .step-content {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(30, 55, 153, 0.15);
}

.step-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.step-link:hover {
    color: var(--accent-blue);
}

.step-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.step-link:hover i {
    transform: translateX(5px);
}

.step-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.step-badge {
    background: rgba(30, 55, 153, 0.1);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.step-features span {
    background: rgba(46, 213, 115, 0.1);
    color: var(--success-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-badges,
    .step-features {
        justify-content: center;
    }
}

/* Countdown CTA */
.countdown-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.countdown-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.countdown-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.countdown-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px 20px;
    min-width: 110px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timer-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Inter', monospace;
}

.timer-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-colon {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.countdown-offer {
    margin: 40px 0;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2ed573;
}

.discount {
    background: #eb3b5a;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
}

.offer-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f7b731;
}

.countdown-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.countdown-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 213, 115, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
}

.countdown-feature i {
    color: #2ed573;
}

.countdown-cta {
    margin-top: 40px;
}

.countdown-cta .btn-nord {
    background: white;
    color: var(--primary-blue);
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 12px;
}

.countdown-cta .btn-nord:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.countdown-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.countdown-note i {
    color: #f7b731;
}

@media (max-width: 768px) {
    .countdown-card {
        padding: 30px 20px;
    }
    
    .countdown-title {
        font-size: 2.2rem;
    }
    
    .countdown-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .timer-box {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .timer-number {
        font-size: 2.5rem;
    }
    
    .new-price {
        font-size: 2.8rem;
    }
    
    .countdown-features {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-cta .btn-nord {
        padding: 18px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
}

/* Quick Action Section */
.quick-action-section {
    padding: 40px 0;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
}

.quick-action-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.quick-action-title {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.quick-action-title i {
    color: var(--primary-blue);
}

.quick-action-text {
    color: #666;
    margin-bottom: 0;
}

.quick-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .quick-action-card {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-action-title {
        justify-content: center;
    }
    
    .quick-action-buttons {
        justify-content: center;
    }
}

/* Download Guide Section */
.download-guide-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e8f0 100%);
}

.download-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.download-hero-content h3 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.download-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.download-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-info span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

/* Device Mockup */
.device-mockup {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.mockup-frame {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mockup-header {
    background: #2a2a2a;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.header-text {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.mockup-screen {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mockup-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* VPN Explanation */
.vpn-explanation-section {
    padding: 80px 0;
    background-color: white;
}

.explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.explanation-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.explanation-content h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.explanation-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.explanation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.explanation-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.explanation-feature i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 5px;
}

.explanation-feature h5 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.explanation-feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #666;
}

/* Benefits Grid */
.benefits-grid-section {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #555;
}

.benefit-list li i {
    color: var(--success-green);
    margin-right: 10px;
    font-size: 1rem;
}

/* Steps Guide */
.guide-steps {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
}

.step-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin: 0;
}

.step-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.platform-badge {
    background: rgba(30, 55, 153, 0.1);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.step-features span {
    background: rgba(46, 213, 115, 0.1);
    color: var(--success-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Platforms Section */
.platforms-section {
    background-color: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.platform-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(30, 55, 153, 0.15);
}

.platform-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.platform-card h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.platform-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.platform-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.platform-link:hover {
    color: var(--accent-blue);
    gap: 12px;
}

/* Free vs Paid Comparison */
.free-vs-paid-section {
    background-color: #f8f9fa;
}

.comparison-grid {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--primary-blue);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.nord-header {
    text-align: center;
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-title {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.05rem;
}

.nord-cell, .free-cell {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nord-cell i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.free-cell i {
    color: var(--danger-red);
    font-size: 1.2rem;
}

.price-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-green);
}

.discount-badge {
    background: var(--danger-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.price-free {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
}

.price-risk {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.risk-warning {
    background: #fff9e6;
    border-left: 4px solid var(--warning-yellow);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    color: var(--warning-yellow);
}

.warning-content h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.warning-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .download-hero,
    .explanation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guide-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-header {
        justify-content: center;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .nord-cell, .free-cell {
        justify-content: center;
        text-align: center;
    }
    
    .risk-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .device-mockup {
        display: none;
    }
    
    .download-hero {
        text-align: center;
    }
    
    .download-info {
        justify-content: center;
    }
    
    .platform-badges,
    .step-features {
        justify-content: center;
    }
}

        /* ======================
           BREADCRUMB
        ====================== */
        .breadcrumb-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 30px 0;
            border-bottom: 1px solid #e0e6ef;
        }
        
        .breadcrumb {
            background: transparent;
            margin: 0;
            padding: 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumb-item.active {
            color: #666;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: #999;
        }
        
                   --primary-blue: #1e3799;
            --secondary-blue: #4a69bd;
            --accent-blue: #0c2461;
            --light-blue: #dff9fb;
            --dark-blue: #0a3d62;
            --success-green: #2ed573;
            --danger-red: #eb3b5a;
            --warning-yellow: #f7b731;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .btn-nord {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-nord:hover {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
            color: white;
        }
        
        .btn-nord-lg {
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        