/* Critical CSS Fixes for Hostinger and other hosting environments */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Fallback font stack */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

/* Ensure CSS loads even if external resources fail */
* {
    box-sizing: border-box !important;
}

/* Force display properties for critical elements */
.header, .nav, .nav-container, .logo, .nav-menu, .hero, .container {
    display: block !important;
}

.nav-container {
    display: flex !important;
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8fafc;
    overflow-x: hidden;
}

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

/* Enhanced Header Styles with Animations */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(5deg);
}

.logo i {
    font-size: 2.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #374151;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Enhanced Hero Section with Animations */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease-out;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-text {
    background: none;
    color: #2563eb;
    padding: 12px 0;
}

.btn-text:hover {
    color: #1d4ed8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
}

.vpn-devices {
    position: relative;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.device:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.device i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.device:hover i {
    transform: rotate(360deg);
    color: #fbbf24;
}

.laptop {
    width: 120px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.phone {
    width: 60px;
    height: 100px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.tablet {
    width: 100px;
    height: 70px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.security-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.security-shield:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(251, 191, 36, 0.4);
}

.security-shield i {
    font-size: 4rem;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.security-shield:hover i {
    transform: rotate(360deg);
}

/* Enhanced Quick Overview with Animations */
.quick-overview {
    padding: 80px 0;
    background: white;
}



.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.overview-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s;
}

.overview-card:hover::before {
    left: 100%;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}

.overview-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
    transition: color 0.3s ease;
}

.overview-card:hover h3 {
    color: #2563eb;
}

.overview-card p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #059669;
    transition: all 0.3s ease;
}

.overview-card:hover .price {
    transform: scale(1.1);
    color: #fbbf24;
}

/* Enhanced VPN Ranking Cards */
.vpn-ranking-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
    margin-bottom: 30px;
}

.vpn-main-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.vpn-logo-large {
    flex-shrink: 0;
}

.vpn-details {
    flex: 1;
}

.vpn-details h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

.vpn-tagline {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.vpn-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vpn-rating-large {
    text-align: center;
    flex-shrink: 0;
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 5px;
}

.stars-large {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.vpn-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.price-info {
    flex: 1;
}

.current-deal {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.deal-badge {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
}

.price-period {
    font-size: 1.2rem;
    color: #6b7280;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.discount {
    color: #10b981;
    font-weight: 700;
    font-size: 1rem;
}

.plan-duration {
    color: #6b7280;
    font-size: 0.9rem;
}

.vpn-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Top VPNs Section */
.top-vpns {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.vpn-rankings {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

.vpn-ranking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.vpn-ranking-card:hover::before {
    left: 100%;
}

.vpn-ranking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.vpn-ranking-card.featured {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.ranking-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

.vpn-logo-img-large {
    height: 120px;
    max-width: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.vpn-logo-img-large:hover {
    transform: scale(1.05);
}

.highlight-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Scroll-triggered animations */
.vpn-ranking-card,
.testing-card,
.overview-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.vpn-ranking-card.animate,
.testing-card.animate,
.overview-card.animate {
    opacity: 1;
}

.vpn-ranking-card:nth-child(1) { animation-delay: 0.1s; }
.vpn-ranking-card:nth-child(2) { animation-delay: 0.2s; }
.vpn-ranking-card:nth-child(3) { animation-delay: 0.3s; }
.vpn-ranking-card:nth-child(4) { animation-delay: 0.4s; }
.vpn-ranking-card:nth-child(5) { animation-delay: 0.5s; }
.vpn-ranking-card:nth-child(6) { animation-delay: 0.6s; }
.vpn-ranking-card:nth-child(7) { animation-delay: 0.7s; }
.vpn-ranking-card:nth-child(8) { animation-delay: 0.8s; }
.vpn-ranking-card:nth-child(9) { animation-delay: 0.9s; }
.vpn-ranking-card:nth-child(10) { animation-delay: 1.0s; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Interactive Elements */
.interactive-element {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-element:hover {
    transform: scale(1.05);
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Focus States for Accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Hover Effects for Cards */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Text Animation */
.text-animate {
    overflow: hidden;
}

.text-animate span {
    display: inline-block;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
}

/* Progress Bar Animation */
.progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hide hero section and quick overview on mobile */
    .hero {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .quick-overview {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Adjust top padding for the first visible section */
    .top-vpns {
        padding-top: 120px !important;
        margin-top: 0 !important;
    }
    
    .quick-overview {
        padding: 40px 0 !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 12px 0;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vpn-main-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .vpn-pricing {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .vpn-compare-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .guide-highlights {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .testing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    

    
    .testing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .guide-highlights {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .setup-steps {
        gap: 20px;
    }
    
    .setup-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-practices {
        grid-template-columns: 1fr;
    }
    
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-privacy-info {
        grid-template-columns: 1fr;
    }
    
    .vpn-ranking-card {
        padding: 30px 20px;
    }
    
    .vpn-logo-img-large {
        height: 80px;
        max-width: 200px;
    }
    
    .vpn-logo-placeholder,
    .proton-logo-placeholder,
    .pia-logo-placeholder {
        width: 200px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .vpn-details h3 {
        font-size: 2rem;
    }
    
    .price-main {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .review-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .review-title h3 {
        font-size: 1.8rem;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .troubleshooting-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-privacy-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 25px;
    }

    .review-description {
        padding: 20px;
    }

    .pros, .cons {
        padding: 20px;
    }

    .review-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Ensure hero section is hidden on all mobile sizes */
    .hero {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .quick-overview {
        padding: 30px 0 !important;
    }
    
    /* Adjust top padding for the first visible section */
    .top-vpns {
        padding-top: 100px !important;
        margin-top: 0 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Additional mobile breakpoint for very small screens */
    @media (max-width: 375px) {
        .hero {
            display: none !important;
            visibility: hidden !important;
            height: 0 !important;
            overflow: hidden !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .quick-overview {
            padding: 20px 0 !important;
        }
        
        .top-vpns {
            padding-top: 80px !important;
            margin-top: 0 !important;
        }
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .vpn-ranking-card {
        padding: 25px 15px;
    }
    
    .vpn-logo-img-large {
        height: 60px;
        max-width: 150px;
    }
    
    .vpn-logo-placeholder,
    .proton-logo-placeholder,
    .pia-logo-placeholder {
        width: 150px;
        height: 60px;
        font-size: 1rem;
    }
    
    .vpn-details h3 {
        font-size: 1.8rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* General Main/Page Layout */
.main, .testing-main, .comparison-main, .reviews-main, .privacy-main, .terms-main, .affiliate-main, .contact-main, .guide-main {
  max-width: 900px;
  margin: 120px auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 32px 24px 48px 24px;
}

.header, .testing-header, .comparison-header, .reviews-header, .privacy-header, .terms-header, .affiliate-header, .contact-header, .guide-header {
  text-align: center;
  margin-bottom: 32px;
}

.header h1, .testing-header h1, .comparison-header h1, .reviews-header h1, .privacy-header h1, .terms-header h1, .affiliate-header h1, .contact-header h1, .guide-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.content, .testing-content, .comparison-content, .reviews-content, .privacy-content, .terms-content, .affiliate-content, .contact-content, .guide-content {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.7;
}

.section {
  margin-bottom: 32px;
}

.comparison-table, table.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  font-weight: 700;
  padding: 20px 15px;
  text-align: left;
  font-size: 1.1rem;
  border: none;
}

.comparison-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
  background: white;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: #f8fafc;
  transition: background 0.3s ease;
}

.featured-row {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  border-left: 4px solid #fbbf24;
}

.vpn-compare-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vpn-logo-small {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.vpn-compare-info strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.vpn-tag {
  background: #2563eb;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.speed-badge {
  background: #10b981;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price-highlight {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.1rem;
}

.security-badge {
  background: #f59e0b;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.rating-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  min-width: 60px;
  text-align: center;
}

.text-success {
  color: #10b981;
  font-size: 1.2rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 20px;
}

/* Guide Sections */
.expert-guide {
  padding: 80px 0;
  background: white;
}

.guide-content {
  max-width: 1000px;
  margin: 0 auto;
}

.guide-intro h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.guide-intro p {
  font-size: 1.2rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 40px;
}

.guide-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.highlight-item {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-item:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.highlight-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.highlight-item p {
  color: #6b7280;
  line-height: 1.6;
}

.guide-section {
  margin: 60px 0;
}

.guide-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.guide-section p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.criteria-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.criteria-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.criteria-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.criteria-icon i {
  font-size: 1.5rem;
  color: white;
}

.criteria-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.criteria-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Testing Methodology */
.testing-methodology {
  padding: 80px 0;
  background: #f8fafc;
}

.testing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.testing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.testing-icon i {
  font-size: 2rem;
  color: white;
}

.testing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.testing-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.testing-card li {
  padding: 8px 0;
  color: #374151;
  position: relative;
  padding-left: 25px;
}

.testing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* About and Contact Sections */
.about-section, .contact-section {
  padding: 60px 0;
  background: white;
}

.contact-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2563eb;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}
.comparison-table th, .comparison-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}
.comparison-table th {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

ul, ol {
  margin: 16px 0 16px 24px;
}
li {
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 32px auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1.2rem;
  color: #6b7280;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2563eb;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-form label {
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-form input, .contact-form textarea {
  padding: 8px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form button {
  margin-top: 10px;
  background: linear-gradient(90deg, #2563eb 60%, #3b82f6 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  width: 100%;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.contact-form button:hover::before {
  left: 100%;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #1746a2 60%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(37,99,235,0.13);
  transform: translateY(-2px);
}
.success-message {
  background: #e0fbe0;
  color: #15803d;
  border: 1px solid #22c55e;
  border-radius: 8px;
  padding: 14px 0;
  text-align: center;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1.1rem;
  display: none;
}
.success-message.active {
  display: block;
}

.contact-info {
  margin-top: 24px;
  text-align: center;
  color: #444;
}

/* VPN Logo Customization */
.vpn-logo-img-large.left-align {
  margin-left: 0;
}
.vpn-logo-img-large.vyprvpn {
  transform: scale(0.75);
  margin-left: 0;
}

/* VPN Protocols Section */
.protocols-section {
  padding: 60px 0;
  background: #f8fafc;
}

.protocols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.protocol-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.protocol-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.protocol-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.protocol-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.protocol-icon i {
  font-size: 1.5rem;
  color: white;
}

.protocol-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.protocol-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.protocol-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.spec-item {
  text-align: center;
  padding: 10px;
  background: #f8fafc;
  border-radius: 8px;
}

.spec-label {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.spec-value.excellent {
  color: #10b981;
}

.spec-value.good {
  color: #f59e0b;
}

.spec-value.high {
  color: #2563eb;
}

/* Use Cases Section */
.use-cases-section {
  padding: 60px 0;
  background: white;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.use-case-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.use-case-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.use-case-icon i {
  font-size: 1.8rem;
  color: white;
}

.use-case-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.use-case-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.use-case-recommendations {
  background: white;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.use-case-recommendations strong {
  color: #2563eb;
  font-weight: 700;
}

/* Setup Guide Section */
.setup-guide {
  padding: 60px 0;
  background: #f8fafc;
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.setup-step {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.setup-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.setup-step h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.setup-step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Security Practices Section */
.security-practices {
  padding: 60px 0;
  background: white;
}

.security-practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.practice-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.practice-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.practice-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.practice-icon i {
  font-size: 1.8rem;
  color: white;
}

.practice-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.practice-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Troubleshooting Section */
.troubleshooting {
  padding: 60px 0;
  background: #f8fafc;
}

.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.trouble-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trouble-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trouble-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trouble-title i {
  color: #ef4444;
  font-size: 1.2rem;
}

.problem-solution {
  background: #fef2f2;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ef4444;
  margin-top: 15px;
}

.problem {
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 10px;
}

.solution {
  color: #6b7280;
  line-height: 1.6;
}

/* VPN vs Other Tools Section */
.vpn-comparison {
  padding: 60px 0;
  background: white;
}

.comparison-table-alt {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table-alt th {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  font-weight: 700;
  padding: 20px 15px;
  text-align: left;
  font-size: 1.1rem;
}

.comparison-table-alt td {
  padding: 20px 15px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.comparison-table-alt tr:last-child td {
  border-bottom: none;
}

.comparison-table-alt tr:hover {
  background: #f8fafc;
}

/* Legal and Privacy Section */
.legal-privacy {
  padding: 60px 0;
  background: #f8fafc;
}

.legal-privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4 i {
  color: #2563eb;
}

.info-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Detailed Reviews Section */
.detailed-reviews {
  padding: 60px 0;
  background: white;
}

.review-card {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.review-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 15px;
  padding: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-title {
  flex: 1;
}

.review-title h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 5px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-score {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.2rem;
}

.review-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.pros, .cons {
  background: white;
  padding: 25px;
  border-radius: 15px;
}

.pros h4 {
  color: #10b981;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons h4 {
  color: #ef4444;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.review-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  margin-top: 20px;
}

.review-details p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-cta {
  text-align: center;
  margin-top: 30px;
}

/* Troubleshooting Section Styling */
.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.trouble-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.trouble-card:hover {
  transform: translateY(-5px);
  border-color: #ef4444;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.1);
}

.trouble-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trouble-card h4 i {
  color: #ef4444;
  font-size: 1.2rem;
}

.trouble-solution {
  background: #fef2f2;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ef4444;
}

.trouble-solution strong {
  color: #dc2626;
  font-weight: 700;
}

/* Privacy Comparison Section */
.privacy-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.comparison-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.comparison-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.comparison-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vpn-advantage, .other-advantage {
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
}

.vpn-advantage {
  background: #dbeafe;
  color: #1e40af;
  border-left: 4px solid #2563eb;
}

.other-advantage {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}

/* Legal Privacy Info Section */
.legal-privacy-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card h4 i {
  color: #2563eb;
  font-size: 1.2rem;
}

.info-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Reviews Grid Layout */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Enhanced Review Card Styling */
.review-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #e5e7eb;
}

.review-title h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-score {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  display: flex;
  gap: 2px;
}

.review-description {
  background: white;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.pros, .cons {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pros h4 {
  color: #10b981;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.cons h4 {
  color: #ef4444;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li, .cons li {
  padding: 12px 0;
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  line-height: 1.5;
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
  background: #d1fae5;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2rem;
  background: #fee2e2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-details {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-details h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.review-details h4:first-child {
  margin-top: 0;
}

.review-details p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.review-cta {
  text-align: center;
  margin-top: 30px;
}

.review-cta .btn {
  font-size: 1.1rem;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.review-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .main, .testing-main, .comparison-main, .reviews-main, .privacy-main, .terms-main, .affiliate-main, .contact-main, .guide-main {
    padding: 12px 2vw 32px 2vw;
  }
  .header h1, .testing-header h1, .comparison-header h1, .reviews-header h1, .privacy-header h1, .terms-header h1, .affiliate-header h1, .contact-header h1, .guide-header h1 {
    font-size: 1.5rem;
  }
} 