
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-red-deep: #7f1d1d;
        --primary-black: #000000;
        --primary-black-light: #111827;
        --primary-black-dark: #020617;
        --primary-white: #ffffff;
        --primary-white-off: #fafafa;
        --primary-white-dark: #f3f4f6;
        
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        --gradient-primary-reverse: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #dc2626 100%);
        --gradient-dark: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%);
        --gradient-dark-reverse: linear-gradient(135deg, #1f2937 0%, #111827 50%, #000000 100%);
        --gradient-light: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #f3f4f6 100%);
        --gradient-accent: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
        
        --shadow-xs: 0 2px 8px rgba(220, 38, 38, 0.04);
        --shadow-sm: 0 4px 16px rgba(220, 38, 38, 0.06);
        --shadow-md: 0 8px 24px rgba(220, 38, 38, 0.08);
        --shadow-lg: 0 16px 32px rgba(220, 38, 38, 0.12);
        --shadow-xl: 0 24px 48px rgba(220, 38, 38, 0.16);
        --shadow-2xl: 0 32px 64px rgba(220, 38, 38, 0.2);
        
        --radius-sm: 12px;
        --radius-md: 20px;
        --radius-lg: 32px;
        --radius-xl: 48px;
        --radius-full: 9999px;
        --radius-circle: 50%;
        
        --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-spring: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        
        --premium-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
        --glass-bg: rgba(0, 0, 0, 0.85);
        --glass-border: rgba(255, 255, 255, 0.1);
        --smooth-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Inter', 'Poppins', sans-serif;
        color: var(--primary-black);
        overflow-x: hidden;
        background: var(--primary-white);
        width: 100%;
        position: relative;
        line-height: 1.5;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }
     
    /* Premium Stats Animation */
    .stats-counter {
        font-feature-settings: "tnum";
        font-variant-numeric: tabular-nums;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), #991b1b);
        border-radius: 2px;
    }
    
    .premium-card {
        background: var(--primary-white);
        border-radius: 16px;
        border: 1px solid rgba(229, 231, 235, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        transition: var(--smooth-transition);
        position: relative;
        overflow: hidden;
    }
    
    .premium-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), #991b1b);
        opacity: 0;
        transition: var(--smooth-transition);
    }
    
    .premium-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--premium-shadow);
        border-color: rgba(220, 38, 38, 0.2);
    }
    
    .premium-card:hover:before {
        opacity: 1;
    }
    
    .stats-banner-item {
        background: linear-gradient(135deg, var(--primary-white) 0%, #f8fafc 100%);
        border-radius: 16px;
        padding: 30px;
        border: 2px solid transparent;
        transition: var(--smooth-transition);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }
    
    .btn-premium {
        background: linear-gradient(135deg, var(--primary-red) 0%, #991b1b 100%);
        color: var(--primary-white);
        padding: 16px 40px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: var(--smooth-transition);
        border: none;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
        text-decoration: none;
        display: inline-block;
    }
    
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .animation-delay-100 { animation-delay: 0.1s; }
    .animation-delay-200 { animation-delay: 0.2s; }
    .animation-delay-300 { animation-delay: 0.3s; }
    .animation-delay-400 { animation-delay: 0.4s; }
    .animation-delay-500 { animation-delay: 0.5s; }
    .animation-delay-600 { animation-delay: 0.6s; }
    .animation-delay-700 { animation-delay: 0.7s; }
    .animation-delay-800 { animation-delay: 0.8s; }
    .animation-delay-900 { animation-delay: 0.9s; }
    .animation-delay-1000 { animation-delay: 1s; }
    
    /* ===== MAIN CONTAINER - FULLY RESPONSIVE ===== */
    .assessment-main {
        position: relative;
        width: 100%;
        background: #ffffff;
        overflow: visible;
    }

    /* ===== ULTRA PREMIUM ASSESSMENTS HERO ===== */
    .assessment-hero {
        position: relative;
        width: 100%;
        min-height: 70vh;
        background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%);
        display: flex;
        align-items: center;
        overflow: hidden;
        margin-bottom: 100px;
        padding: 120px 0;
    }

    .assessment-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 140%;
        height: 140%;
        background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 60%);
        animation: rotate 40s linear infinite;
        pointer-events: none;
    }

    .assessment-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(220,38,38,0.03)"/></svg>');
        background-size: 60px 60px;
        opacity: 0.2;
        pointer-events: none;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .assessment-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    .assessment-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #dc2626;
        opacity: 0.4;
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .assessment-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .assessment-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; width: 6px; height: 6px; background: #ef4444; }
    .assessment-particle:nth-child(3) { top: 30%; right: 15%; animation-delay: 2s; }
    .assessment-particle:nth-child(4) { bottom: 40%; right: 25%; animation-delay: 3s; width: 5px; height: 5px; }
    .assessment-particle:nth-child(5) { top: 70%; right: 40%; animation-delay: 4s; }
    .assessment-particle:nth-child(6) { bottom: 20%; left: 30%; animation-delay: 5s; width: 7px; height: 7px; background: #ef4444; }
    .assessment-particle:nth-child(7) { top: 50%; left: 50%; animation-delay: 6s; }
    .assessment-particle:nth-child(8) { bottom: 10%; right: 10%; animation-delay: 7s; width: 8px; height: 8px; }

    @keyframes float {
        0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
        50% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
    }

    .assessment-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        position: relative;
        z-index: 10;
        text-align: center;
        color: #ffffff;
        width: 100%;
    }

    .assessment-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220, 38, 38, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(220, 38, 38, 0.3);
        padding: 12px 28px;
        border-radius: 9999px;
        margin-bottom: 30px;
        color: #ffffff;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        box-shadow: 0 8px 24px rgba(220, 38, 38, 0.08);
    }

    .assessment-badge i {
        color: #ef4444;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }

    .assessment-title {
        font-family: 'Poppins', sans-serif;
        font-size: 4.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 25px;
        color: #ffffff;
    }

    .assessment-title span {
        background: linear-gradient(135deg, #ffffff, #fecaca);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
    }

    .assessment-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* ===== SECTION HEADER ===== */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        width: 100%;
    }

    .section-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220, 38, 38, 0.08);
        padding: 10px 24px;
        border-radius: 9999px;
        margin-bottom: 25px;
        color: #dc2626;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 3px;
        text-transform: uppercase;
        border: 1px solid rgba(220, 38, 38, 0.2);
        backdrop-filter: blur(5px);
    }

    .section-subtitle i {
        color: #dc2626;
        animation: pulse 2s infinite;
    }

    .section-title {
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: #000000;
        margin-bottom: 20px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .section-title span {
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    /* ===== ASSESSMENT CARDS GRID - 4 TYPES ===== */
    .assessment-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto 100px;
        padding: 0 30px;
        width: 100%;
    }

    .assessment-card {
        background: #ffffff;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 16px 32px rgba(220, 38, 38, 0.08);
        transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(220, 38, 38, 0.1);
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .assessment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        z-index: 2;
    }

    .assessment-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 32px 64px rgba(220, 38, 38, 0.2);
        border-color: rgba(220, 38, 38, 0.3);
    }

    .assessment-card-icon {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #000000 0%, #111827 100%);
        position: relative;
        overflow: hidden;
    }

    .assessment-card-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

    .assessment-card-icon i {
        font-size: 5rem;
        color: #ffffff;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
    }

    .assessment-card-content {
        padding: 35px 30px;
        flex-grow: 1;
        background: #ffffff;
    }

    .assessment-card-title {
        font-family: 'Poppins', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .assessment-card-description {
        font-size: 1rem;
        color: #111827;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .assessment-card-features {
        list-style: none;
        margin: 20px 0;
        padding: 0;
    }

    .assessment-card-features li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        color: #111827;
        font-size: 0.95rem;
        border-bottom: 1px dashed rgba(220, 38, 38, 0.1);
    }

    .assessment-card-features li:last-child {
        border-bottom: none;
    }

    .assessment-card-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #dc2626;
        font-weight: 900;
        font-size: 1rem;
    }

    .assessment-card-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        color: #ffffff;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        align-self: flex-start;
    }

    .assessment-card-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
        gap: 15px;
    }

    .assessment-card-btn i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .assessment-card-btn:hover i {
        transform: translateX(5px);
    }

    /* ===== ASSESSMENT DETAILS SECTION ===== */
    .assessment-details-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 1400px;
        margin: 0 auto 100px;
        padding: 0 30px;
        width: 100%;
    }

    .assessment-detail-card {
        background: linear-gradient(145deg, #ffffff, #fafafa);
        border-radius: 32px;
        padding: 50px 45px;
        box-shadow: 0 24px 48px rgba(220, 38, 38, 0.12);
        border: 1px solid rgba(220, 38, 38, 0.1);
        position: relative;
        overflow: hidden;
        transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
    }

    .assessment-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .assessment-detail-card:hover::before {
        opacity: 1;
    }

    .assessment-detail-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 32px 64px rgba(220, 38, 38, 0.2);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .assessment-detail-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #000000;
        margin-bottom: 20px;
        line-height: 1.3;
        position: relative;
        padding-bottom: 15px;
    }

    .assessment-detail-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        border-radius: 9999px;
    }

    .assessment-detail-text {
        font-size: 1.1rem;
        color: #111827;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .assessment-detail-list {
        list-style: none;
        margin: 30px 0;
        padding: 0;
    }

    .assessment-detail-list li {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        color: #111827;
        font-size: 1rem;
        border-bottom: 1px dashed rgba(220, 38, 38, 0.1);
    }

    .assessment-detail-list li:last-child {
        border-bottom: none;
    }

    .assessment-detail-list li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #dc2626;
        font-weight: 900;
        font-size: 1.2rem;
    }

    /* ===== ASSESSMENT CTA SECTION ===== */
    .assessment-cta {
        background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%);
        border-radius: 48px;
        margin: 0 auto 100px;
        max-width: 1400px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(220, 38, 38, 0.2);
        width: calc(100% - 60px);
    }

    .assessment-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
        pointer-events: none;
    }

    .assessment-cta::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(220,38,38,0.1)"/></svg>');
        background-size: 40px 40px;
        opacity: 0.3;
        pointer-events: none;
    }

    .assessment-cta-content {
        position: relative;
        z-index: 2;
        padding: 80px 60px;
        text-align: center;
        color: #ffffff;
    }

    .assessment-cta-title {
        font-family: 'Poppins', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .assessment-cta-title span {
        background: linear-gradient(135deg, #ffffff, #fecaca);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .assessment-cta-description {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.8;
    }

    .assessment-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 50%, #7f1d1d 100%);
        color: #ffffff;
        padding: 20px 50px;
        border-radius: 9999px;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 24px 48px rgba(220, 38, 38, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .assessment-cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s ease;
    }

    .assessment-cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 32px 64px rgba(220, 38, 38, 0.2);
    }

    .assessment-cta-button:hover::before {
        left: 100%;
    }

    .assessment-cta-button i {
        font-size: 1.3rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .assessment-cta-button:hover i {
        transform: translateX(8px);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fade-in-left {
        animation: fadeInLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    
    .animate-fade-in-right {
        animation: fadeInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    
    .animate-fade-in-up {
        animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    /* ===== FULLY OPTIMIZED RESPONSIVE BREAKPOINTS ===== */
    
    /* Large Desktop - 1400px and below */
    @media screen and (max-width: 1400px) {
        .assessment-title {
            font-size: 4rem;
        }
    }
    
    /* Desktop - 1200px and below */
    @media screen and (max-width: 1200px) {
        .assessment-title { 
            font-size: 3.5rem; 
        }
        .assessment-cards-grid { 
            grid-template-columns: repeat(2, 1fr); 
        }
        .assessment-details-grid { 
            grid-template-columns: 1fr; 
        }
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }
        .footer-cta {
            flex-direction: column;
            text-align: center;
            padding: 50px;
            gap: 30px;
        }
        .footer-cta::before {
            width: 100%;
            height: 6px;
            top: 0;
            left: 0;
        }
        .footer-cta-title {
            font-size: 32px;
        }
        .footer-cta-btn {
            white-space: normal;
        }
    }
    
    /* Tablet Landscape - 1024px and below */
    @media screen and (max-width: 1024px) {
        /* Hide desktop navigation */
        nav.hidden.lg\:block {
            display: none !important;
        }
        
        /* Show hamburger button */
        #mobileMenuBtn {
            display: flex !important;
            margin-left: auto !important;
        }
        
        /* Adjust navbar padding */
        .premium-navbar .container {
            padding-left: 20px !important;
            padding-right: 20px !important;
        }
        
        /* Logo size adjustment */
        .premium-navbar .flex.items-center img {
            width: 160px !important;
        }
        
        .assessment-main {
            padding-top: 70px;
        }
        
        .assessment-hero {
            padding: 100px 0;
            min-height: auto;
        }
        
        .assessment-title { 
            font-size: 3.2rem; 
        }
        
        .assessment-badge { 
            margin-left: auto; 
            margin-right: auto; 
        }
        
        .assessment-cards-grid { 
            max-width: 600px; 
        }
        
        .assessment-cta-title { 
            font-size: 2.4rem; 
        }
        
        .footer-column {
            text-align: center;
        }
        
        .footer-column h4::after {
            left: 0;
            right: 0;
            margin: 0 auto;
        }
        
        .footer-social {
            justify-content: center;
        }
        
        .contact-info li {
            justify-content: center;
        }
        
        .flex.items-center {
            justify-content: center;
        }
    }
    
    /* Tablet Portrait - 768px and below */
    @media screen and (max-width: 768px) {
        .assessment-hero { 
            padding: 80px 0; 
        }
        
        .assessment-title { 
            font-size: 2.8rem; 
        }
        
        .assessment-description { 
            font-size: 1.1rem; 
        }
        
        .section-title { 
            font-size: 2.2rem; 
        }
        
        .assessment-cards-grid { 
            grid-template-columns: 1fr; 
            max-width: 500px; 
        }
        
        .assessment-card-title { 
            font-size: 1.4rem; 
        }
        
        .assessment-detail-title { 
            font-size: 1.8rem; 
        }
        
        .assessment-detail-card { 
            padding: 40px 30px; 
        }
        
        .assessment-cta-content { 
            padding: 60px 30px; 
        }
        
        .assessment-cta-title { 
            font-size: 2rem; 
        }
        
        .premium-navbar .container {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
        
        #mobileMenuBtn {
            width: 44px;
            height: 44px;
            font-size: 20px;
        }
        
        .premium-navbar .flex.items-center img {
            width: 140px !important;
        }
        
        .mobile-nav ul {
            padding: 20px 16px !important;
        }
        
        .mobile-nav ul li a {
            padding: 12px 16px !important;
            font-size: 15px;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .footer-cta {
            padding: 40px 30px;
            border-radius: 30px;
            width: calc(100% - 40px);
        }
        
        .footer-cta-title {
            font-size: 28px;
        }
        
        .footer-cta-btn {
            width: 100%;
            justify-content: center;
            padding: 16px 30px;
            font-size: 16px;
        }
        
        .footer-column {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .footer-column h4 {
            font-size: 22px;
        }
        
        .copyright {
            margin: 40px 30px 0;
            padding: 25px 0 0;
        }
        
        .copyright p {
            font-size: 14px;
        }
    }
    
    /* Mobile Landscape - 576px and below */
    @media screen and (max-width: 576px) {
        .assessment-hero { 
            padding: 60px 0; 
        }
        
        .assessment-hero-container,
        .section-header,
        .assessment-cards-grid,
        .assessment-details-grid {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .assessment-cta {
            width: calc(100% - 40px);
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .assessment-title { 
            font-size: 2.2rem; 
        }
        
        .assessment-badge { 
            padding: 10px 20px; 
            font-size: 12px; 
        }
        
        .section-title { 
            font-size: 1.8rem; 
        }
        
        .assessment-card-content { 
            padding: 30px 25px; 
        }
        
        .assessment-detail-card { 
            padding: 35px 25px; 
        }
        
        .assessment-detail-title { 
            font-size: 1.6rem; 
        }
        
        .assessment-cta-content { 
            padding: 50px 25px; 
        }
        
        .assessment-cta-title { 
            font-size: 1.6rem; 
        }
        
        .assessment-cta-description { 
            font-size: 1rem; 
        }
        
        .assessment-cta-button { 
            width: 100%; 
            justify-content: center;
            padding: 16px 30px;
        }
        
        .premium-navbar .container {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }
        
        #mobileMenuBtn {
            width: 40px;
            height: 40px;
            font-size: 18px;
            border-radius: 10px;
        }
        
        .premium-navbar .flex.items-center img {
            width: 120px !important;
        }
        
        .mobile-nav ul {
            padding: 16px 12px !important;
        }
        
        .mobile-nav ul li a {
            padding: 10px 14px !important;
            font-size: 14px;
        }
        
        .footer-content {
            padding: 0 20px;
            gap: 35px;
        }
        
        .footer-cta {
            padding: 30px 20px;
            border-radius: 24px;
            width: calc(100% - 30px);
        }
        
        .footer-cta-title {
            font-size: 24px;
        }
        
        .footer-cta-btn {
            padding: 14px 25px;
            font-size: 15px;
            border-radius: 12px;
        }
        
        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 25px;
        }
        
        .footer-social-icon {
            width: 44px;
            height: 44px;
            font-size: 16px;
        }
        
        .contact-info li {
            font-size: 14px;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }
    }
    
    /* Mobile Portrait - 400px and below */
    @media screen and (max-width: 400px) {
        .assessment-title { 
            font-size: 1.8rem; 
        }
        
        .premium-navbar .flex.items-center img {
            width: 100px !important;
        }
        
        #mobileMenuBtn {
            width: 38px;
            height: 38px;
            font-size: 16px;
        }
        
        .mobile-nav ul li a {
            padding: 8px 12px !important;
            font-size: 13px;
        }
        
        .footer-cta {
            padding: 25px 15px;
        }
        
        .footer-cta-title {
            font-size: 22px;
        }
        
        .footer-cta-btn {
            padding: 12px 20px;
            font-size: 14px;
        }
        
        .footer-social {
            gap: 10px;
        }
        
        .footer-social-icon {
            width: 40px;
            height: 40px;
            font-size: 15px;
        }
    }
    
    /* Fix for touch devices - no hover effects */
    @media (hover: none) and (pointer: coarse) {
        .mobile-nav ul li a:hover,
        .footer-links a:hover,
        .footer-social-icon:hover,
        .footer-cta-btn:hover,
        .contact-info li:hover i {
            transform: none;
            padding-left: 0;
            background: inherit;
            box-shadow: none;
        }
        
        .assessment-card:hover,
        .assessment-detail-card:hover {
            transform: none;
        }
        
        .mobile-nav ul li a:active {
            background: rgba(220, 38, 38, 0.2);
        }
        
        .footer-links a:active,
        .footer-social-icon:active {
            opacity: 0.8;
        }
    }

 