    .header {
        opacity: 1 !important;
        visibility: visible !important;
        --header-purple-main: #6a1b9a;
        --header-purple-dark: #4a0072;
        --header-purple-light-bg: #f3e5f5;
        --header-red-logo: #f04362;
        --header-text-primary: #111827;
        --header-text-secondary: #4b5563;
        --header-white: #ffffff;
        --header-grey-light: #f9fafb;
        --header-grey-border: #e5e7eb;
        --header-dotted-border-color: #d1d5db;
        --header-glass-bg: rgba(255, 255, 255, 0.4);
        --header-transition-speed: 0.35s;
        --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
        font-family: 'Inter', sans-serif;
        color: var(--header-text-primary);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        background: var(--header-glass-bg);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        position: fixed;
        border-bottom: 1px solid var(--header-grey-border);
        top: 0;
        z-index: 1002;
        width: 100%;
        min-height: 60px;
    }
    
    #header-placeholder {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: var(--header-glass-bg);
        border-bottom: 1px solid var(--header-grey-border);
        z-index: 1001;
    }
    
    body {
        padding-top: 80px;
    }
    
    @media screen and (max-width: 767px) {
        #header-placeholder {
            height: 70px;
        }
        
        body {
            padding-top: 70px;
        }
    }

    .header .container { 
        max-width: 1440px; 
        margin: 0 auto; 
        padding: 0 24px; 
    }

    .header a, 
    .header button { 
        text-decoration: none; 
        color: inherit; 
        font-family: inherit; 
        cursor: pointer; 
    }

    .header ul { 
        list-style: none; 
    }

    .header button { 
        background: none; 
        border: none; 
    }

    .header .navbar {
        display: flex;
        align-items: center;
        height: 80px;
        position: relative;
        padding: 0;
    }

    .header .logo { 
        font-size: 24px; 
        font-weight: 700; 
        display: flex; 
        align-items: center; 
        gap: 7px;
        margin-right: auto;
    }

    .header .logo img { 
        width: 34px; 
        height: 34px; 
    }

    .header .logo-text { 
        color: var(--header-red-logo); 
    }

    .header .nav-content-wrapper {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .header .nav-menu { 
        display: flex; 
        align-items: center; 
        gap: 8px; 
        margin-right: 16px;
    }

    .header .nav-item { 
        position: relative; 
    }

    .header .dropdown-item { 
        position: relative; 
    }

    .header .nav-link {
        font-size: 16px; 
        font-weight: 500; 
        color: var(--header-text-secondary);
        padding: 10px 16px; 
        border-radius: 8px;
        transition: all var(--header-transition-speed) ease;
        white-space: nowrap;
    }

    .header .nav-link:hover,
    .header .dropdown-item.is-open .dropdown-toggle {
        color: var(--header-purple-main); 
        background-color: var(--header-purple-light-bg);
    }

    .header .dropdown-toggle { 
        display: flex; 
        align-items: center; 
        gap: 6px; 
    }

    .header .dropdown-chevron { 
        transition: transform var(--header-transition-speed) var(--header-transition-easing); 
    }

    .header .dropdown-item.is-open .dropdown-chevron { 
        transform: rotate(180deg); 
    }

    .header .dropdown-menu {
        position: absolute;
        top: calc(100% + 25px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 400px;
        max-width: 500px;
        background: var(--header-white);
        border: 1px solid var(--header-grey-border);
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) translateX(-50%);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
        pointer-events: none;
        z-index: 999;
    }

    .header .corporate-dropdown-menu {
        min-width: 700px;
        max-width: 800px;
    }

    .header .dropdown-item.is-open .dropdown-menu {
        opacity: 1; 
        visibility: visible;
        transform: translateY(0) translateX(-50%);
        transition-delay: 0s; 
        pointer-events: auto;
    }

    .header .dropdown-content {
        padding: 24px 32px;
    }

    .header .two-column-layout {
        display: flex;
        gap: 32px;
    }

    .header .dropdown-column {
        flex: 1;
        position: relative;
    }

    .header .dropdown-column:first-child {
        padding-right: 16px;
        border-right: 1px dotted var(--header-dotted-border-color);
    }

    .header .dropdown-column:last-child {
        padding-left: 16px;
    }

    .header .dropdown-section {
        margin-bottom: 28px;
    }

    .header .dropdown-section:last-child {
        margin-bottom: 0;
    }

    .header .section-title {
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #170f49;
        margin-bottom: 16px;
    }

    .header .dropdown-section ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .header .dropdown-section li a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Urbanist', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #514b81;
        transition: color 0.2s ease;
    }

    .header .dropdown-section li a:hover {
        color: #170f49;
    }

    .header .item-icon {
        width: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #514b81;
        flex-shrink: 0;
    }

    .header .item-icon svg {
        width: 100%;
        height: 100%;
        stroke-width: 1.5;
    }

    .header .nav-controls { 
        display: flex; 
        align-items: center; 
        gap: 12px;
    }

    .header .cta-button {
        background-color: var(--header-white);
        color: #5D2A7B;
        padding: 12px 24px;
        border-radius: 50px;
        border: 1px solid var(--header-purple-main);
        font-weight: 600;
        font-size: 15px;
        transition: all var(--header-transition-speed) var(--header-transition-easing);
        white-space: nowrap;
    }

    .header .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
    }

    .header .desktop-only { 
        display: inline-flex; 
    }

    .header .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 2px solid transparent;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    .header .mobile-menu-toggle:hover {
        background-color: #faf5ff;
        border-color: #e5e7eb;
        transform: scale(1.05);
    }

    .header .hamburger-line {
        width: 24px;
        height: 2.5px;
        background-color: #374151;
        transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        transform-origin: center;
        border-radius: 1px;
    }

    .header .hamburger-line:nth-child(2) {
        margin: 5px 0;
    }

    .header .mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .header .mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .header .mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .header .mobile-menu-overlay,
    #mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99998;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--header-transition-speed) ease, visibility 0s var(--header-transition-speed);
    }

    .header .mobile-menu-overlay.is-open,
    #mobile-menu-overlay.is-open {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .header .mobile-menu,
    #mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100%;
        background: #ffffff !important;
        z-index: 99999;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
        font-family: 'Inter', sans-serif;
        border-left: 1px solid #e5e7eb;
    }

    .header .mobile-menu *,
    #mobile-menu * {
        text-decoration: none !important;
        list-style: none !important;
    }

    .header .mobile-menu a,
    #mobile-menu a {
        text-decoration: none !important;
    }

    .header .mobile-menu button,
    #mobile-menu button {
        text-decoration: none !important;
    }

    .header .mobile-menu ul,
    #mobile-menu ul,
    .header .mobile-menu ol,
    #mobile-menu ol,
    .header .mobile-menu li,
    #mobile-menu li {
        list-style: none !important;
        list-style-type: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .header .mobile-menu.is-open,
    #mobile-menu.is-open {
        transform: translateX(0);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    ma-header:has(.mobile-menu.is-open),
    ma-header[data-mobile-menu-open] {
        position: relative;
        z-index: 10002 !important;
    }

    .header .mobile-menu-header,
    #mobile-menu .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 2px solid #f3f4f6;
        background: #ffffff;
        font-family: 'Inter', sans-serif;
        min-height: 75px;
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .header .mobile-logo,
    #mobile-menu .mobile-logo { 
        font-size: 20px; 
        font-weight: 700; 
        display: flex; 
        align-items: center; 
        gap: 8px;
        text-decoration: none !important;
        color: #111827;
        font-family: 'Inter', sans-serif;
    }

    .header .mobile-logo img,
    #mobile-menu .mobile-logo img { 
        width: 30px; 
        height: 30px; 
        border-radius: 4px;
    }

    .header .mobile-logo .logo-text,
    #mobile-menu .mobile-logo .logo-text { 
        color: #f04362 !important;
        font-weight: 700;
        text-decoration: none !important;
    }

    .header .mobile-menu-close,
    #mobile-menu .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        cursor: pointer;
        padding: 8px;
        border-radius: 10px;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .header .mobile-menu-close:hover,
    #mobile-menu .mobile-menu-close:hover {
        background-color: #f9fafb;
        border-color: #d1d5db;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }

    .header .close-line,
    #mobile-menu .close-line {
        position: absolute;
        width: 20px;
        height: 2.5px;
        background-color: #374151;
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    .header .close-line:nth-child(1),
    #mobile-menu .close-line:nth-child(1) {
        transform: rotate(45deg);
    }

    .header .close-line:nth-child(2),
    #mobile-menu .close-line:nth-child(2) {
        transform: rotate(-45deg);
    }

    .header .mobile-nav,
    #mobile-menu .mobile-nav {
        padding: 24px 0;
        background: #ffffff;
        font-family: 'Inter', sans-serif;
    }

    .header .mobile-nav-item,
    #mobile-menu .mobile-nav-item {
        background: #ffffff;
        border-bottom: 1px solid #f1f3f4;
    }

    .header .mobile-nav-item:last-child,
    #mobile-menu .mobile-nav-item:last-child {
        border-bottom: 1px solid #f1f3f4;
    }

    .header .mobile-nav-link,
    #mobile-menu .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 500;
        color: #111827;
        transition: all 0.3s ease;
        background: #ffffff;
        border: none;
        width: 100%;
        text-align: left;
        font-family: 'Inter', sans-serif;
        text-decoration: none !important;
        cursor: pointer;
        border-left: 4px solid transparent;
    }

    .header .mobile-nav-link:hover,
    .header .mobile-nav-link:focus,
    #mobile-menu .mobile-nav-link:hover,
    #mobile-menu .mobile-nav-link:focus {
        color: #6a1b9a;
        background-color: #faf5ff;
        border-left-color: #6a1b9a;
        transform: translateX(2px);
    }

    .header .mobile-dropdown-toggle,
    #mobile-menu .mobile-dropdown-toggle {
        cursor: pointer;
    }

    .header .mobile-dropdown-chevron,
    #mobile-menu .mobile-dropdown-chevron {
        transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        flex-shrink: 0;
        color: #9ca3af;
    }

    .header .mobile-dropdown-item.is-open .mobile-dropdown-chevron,
    #mobile-menu .mobile-dropdown-item.is-open .mobile-dropdown-chevron {
        transform: rotate(180deg);
    }

    .header .mobile-dropdown-menu,
    #mobile-menu .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        background-color: #f9fafb;
    }

    .header .mobile-dropdown-item.is-open .mobile-dropdown-menu,
    #mobile-menu .mobile-dropdown-item.is-open .mobile-dropdown-menu {
        max-height: 2000px;
    }

    .header .mobile-menu-group,
    #mobile-menu .mobile-menu-group {
        margin: 0 12px;
        background: #fafbfc;
        border-radius: 8px;
        margin-bottom: 8px;
        padding: 20px;
    }

    .header .mobile-menu-group:last-child,
    #mobile-menu .mobile-menu-group:last-child {
        margin-bottom: 8px;
    }

    .header .mobile-group-title,
    #mobile-menu .mobile-group-title {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #170f49;
        margin-bottom: 12px;
    }

    .header .mobile-menu-list,
    #mobile-menu .mobile-menu-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .header .mobile-menu-list li,
    #mobile-menu .mobile-menu-list li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .header .mobile-menu-list li a,
    #mobile-menu .mobile-menu-list li a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'Urbanist', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #514b81;
        padding: 8px 12px;
        transition: all 0.2s ease;
        text-decoration: none !important;
        border-radius: 6px;
        margin-bottom: 2px;
        list-style: none;
    }

    .header .mobile-menu-list li a:hover,
    #mobile-menu .mobile-menu-list li a:hover {
        color: #170f49;
        background-color: #ffffff;
        transform: translateX(4px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .header .mobile-cta-section,
    #mobile-menu .mobile-cta-section {
        padding: 24px;
        border-top: 1px solid #e5e7eb;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .header .mobile-cta-button,
    #mobile-menu .mobile-cta-button {
        display: block;
        width: 100%;
        background: #5D2A7B;
        color: #ffffff;
        padding: 16px 24px;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(106, 27, 154, 0.3);
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .header .mobile-cta-button:hover,
    #mobile-menu .mobile-cta-button:hover {
        background: linear-gradient(135deg, #4a0072 0%, #6a1b9a 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(106, 27, 154, 0.4);
    }

    .header .mobile-cta-button:active,
    #mobile-menu .mobile-cta-button:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(106, 27, 154, 0.3);
    }

    @media screen and (max-width: 1440px) {
        .header .nav-link {
            padding: 9px 14px;
            font-size: 15px;
        }

        .header .cta-button {
            padding: 11px 22px;
            font-size: 14px;
        }
    }

    @media screen and (max-width: 1350px) {
        .header .nav-link {
            padding: 8px 12px;
            font-size: 14px;
        }

        .header .nav-menu {
            gap: 6px;
        }

        .header .cta-button {
            padding: 10px 20px;
            font-size: 14px;
        }
    }

    @media screen and (max-width: 1280px) {
        .header .dropdown-menu {
            min-width: 360px;
            max-width: 460px;
        }

        .header .corporate-dropdown-menu {
            min-width: 640px;
            max-width: 740px;
        }

        .header .nav-link {
            padding: 8px 11px;
            font-size: 14px;
        }

        .header .cta-button {
            padding: 9px 18px;
            font-size: 13px;
        }
    }

    @media screen and (max-width: 1200px) {
        .header .nav-link {
            padding: 7px 10px;
            font-size: 13px;
        }

        .header .cta-button {
            padding: 8px 16px;
            font-size: 13px;
        }

        .header .nav-menu {
            gap: 5px;
        }

        .header .nav-controls {
            gap: 9px;
        }
    }

    @media screen and (max-width: 1120px) {
        .header .dropdown-menu {
            min-width: 340px;
            max-width: 420px;
        }

        .header .corporate-dropdown-menu {
            min-width: 580px;
            max-width: 680px;
        }

        .header .dropdown-content {
            padding: 18px 26px;
        }

        .header .nav-link {
            padding: 7px 9px;
            font-size: 13px;
        }

        .header .cta-button {
            padding: 8px 15px;
            font-size: 12px;
        }

        .header .nav-menu {
            gap: 4px;
        }

        .header .nav-controls {
            gap: 8px;
        }
    }

    @media screen and (max-width: 1094px) {
        .header .nav-menu {
            display: none !important;
        }

        .header .desktop-only {
            display: none !important;
        }

        .header .mobile-menu-toggle {
            display: flex !important;
        }
    }

    @media screen and (max-width: 1023px) and (min-width: 768px) {
        .header .container {
            padding: 0 20px;
        }

        .header .dropdown-menu {
            min-width: 320px;
            max-width: 400px;
        }

        .header .corporate-dropdown-menu {
            min-width: 520px;
            max-width: 620px;
        }

        .header .dropdown-content {
            padding: 16px 20px;
        }

        .header .section-title {
            font-size: 15px;
        }

        .header .dropdown-section li a {
            font-size: 13px;
        }
        
        .hero-section .slide-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        .hero-section .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .stats-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .slide-image-container {
            padding-left: 2rem;
        }

        .features-section .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .testimonials-section .testimonials-wrapper {
            max-width: 90%;
        }

        .stats-section .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }

    @media screen and (max-width: 900px) {
        .header .dropdown-menu {
            min-width: 300px;
            max-width: 380px;
        }

        .header .corporate-dropdown-menu {
            min-width: 480px;
            max-width: 580px;
        }

        .header .dropdown-content {
            padding: 14px 18px;
        }

        .header .two-column-layout {
            gap: 20px;
        }
    }

    @media screen and (max-width: 767px) {
        *,
        *::before,
        *::after {
            animation-duration: 0s !important;
            animation-delay: 0s !important;
            transition-duration: 0s !important;
            transition-delay: 0s !important;
        }
        
        [data-aos] {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
        }
        
        .animate-on-scroll,
        .animate-child {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
        }

        .header .container {
            padding: 0 16px;
        }
        
        .header .navbar {
            height: 70px;
        }
        
        .header .nav-menu {
            display: none;
        }
        
        .header .desktop-only {
            display: none !important;
        }
        
        .header .mobile-menu-toggle {
            display: flex;
        }
        
        .header .logo {
            font-size: 20px;
        }
        
        .header .logo img {
            width: 28px;
            height: 28px;
        }
    }

    @media screen and (max-width: 480px) {
        .header .mobile-menu {
            max-width: 100%;
        }
        
        .header .mobile-menu-header {
            padding: 16px 20px;
        }
        
        .header .mobile-nav-link {
            padding: 14px 20px;
        }
        
        .header .mobile-menu-group {
            padding: 16px 20px;
        }
        
        .header .mobile-cta-section {
            padding: 20px;
        }
    }
    
    @media screen and (max-width: 388px) {
        .header .container {
            padding: 0 12px;
        }
        
        .hero-section .slide-content h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }
        
        .hero-section .slide-content p {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        
        .stats-container {
            grid-template-columns: 1fr;
            gap: 1rem;
            margin: 0 -12px;
            padding: 1rem 12px;
        }
        
        .stat-item {
            padding: 1rem;
            text-align: center;
        }
        
        .features-section .features-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 12px;
        }
        
        .testimonials-section .testimonials-wrapper {
            max-width: 100%;
            padding: 0 12px;
        }
        
        .stats-section .stats-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 12px;
        }
        
        .container,
        .hero-container,
        .section-container {
            padding-left: 12px;
            padding-right: 12px;
            max-width: 100%;
        }
        
        .btn,
        .cta-button {
            font-size: 0.9rem;
            padding: 0.75rem 1.5rem;
            width: 100%;
            max-width: 280px;
            margin: 0 auto;
            display: block;
            text-align: center;
        }
        
        .slide-image-container,
        .image-container {
            padding: 0;
            margin: 1rem 0;
        }
        
        .section-title {
            font-size: 1.5rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 0.9rem;
            text-align: center;
            max-width: 100%;
        }
        
        .header .mobile-menu-list li a {
            padding: 6px 10px;
            font-size: 13px;
        }
        
        .header .mobile-group-title {
            font-size: 14px;
            padding: 12px 0 8px;
        }
        
        .header .mobile-cta-section {
            padding: 16px 12px;
        }
        
        .header .mobile-cta-button {
            padding: 10px 16px;
            font-size: 14px;
        }
        
        .hero-section {
            padding: 1rem 12px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow-x: hidden;
        }
        
        .slider-wrapper {
            padding: 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
        
        .slider-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .slides-wrapper {
            width: 100%;
            max-width: 100%;
        }
        
        .slide {
            padding: 1rem 0;
            gap: 1.5rem;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .slide-content {
            padding: 0 12px;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            text-align: center;
            flex-shrink: 0;
        }
        
        .slide-content h1 {
            font-size: 1.6rem !important;
            line-height: 1.3;
            margin-bottom: 1rem;
            word-wrap: break-word;
            hyphens: auto;
            max-width: 100%;
            overflow-wrap: break-word;
        }
        
        .slide-content p {
            font-size: 0.9rem !important;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            max-width: 100%;
            overflow-wrap: break-word;
        }
        
        .stats-container {
            margin: 1rem 0;
            padding: 1rem 12px;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            display: grid !important;
            grid-template-columns: 1fr;
            gap: 1rem;
            justify-items: center;
        }
        
        .stat-item {
            min-width: auto;
            max-width: 100%;
            width: 100%;
            padding: 0.75rem 0.5rem;
            font-size: 0.9rem;
            text-align: center;
            box-sizing: border-box;
        }
        
        .stat-item strong {
            font-size: 1.5rem;
            display: block;
        }
        
        .stat-item span {
            font-size: 0.9rem;
            line-height: 1.2;
        }
        
        .slide-image-container {
            padding: 0 12px;
            margin: 1rem 0;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
        }
        
        .layered-image {
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        
        .hero-card {
            position: static !important;
            transform: none !important;
            max-width: 100%;
            margin: 1rem auto 0;
            padding: 0.5rem;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .hero-card .icon-placeholder {
            font-size: 0.8rem;
            padding: 0.3rem 0.5rem;
            min-width: auto;
        }
        
        .assessments-section {
            padding: 2rem 12px;
        }
        
        .assessments-section .page-container {
            padding: 0;
            max-width: 100%;
        }
        
        .assessments-section h2 {
            font-size: 1.4rem;
            text-align: center;
            margin-bottom: 2rem;
            padding: 0 12px;
            line-height: 1.3;
        }
        
        .assessments-grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 1.5rem !important;
            align-items: center !important;
            justify-content: center !important;
            max-width: 100% !important;
            padding: 0 !important;
        }
        
        .assessment-card {
            width: 100% !important;
            max-width: 280px !important;
            margin: 0 auto !important;
            padding: 1.5rem 1rem !important;
            text-align: center !important;
            box-sizing: border-box !important;
        }
        
        .assessment-card h3 {
            font-size: 1.1rem;
            margin: 1rem 0 0.5rem;
        }
        
        .assessment-card p {
            font-size: 0.9rem;
            line-height: 1.4;
            margin: 0;
        }
        
        .card-icon-wrapper {
            margin: 0 auto 1rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .card-icon-wrapper svg {
            width: 30px;
            height: 30px;
        }

        .page-container {
            padding-left: 12px !important;
            padding-right: 12px !important;
            max-width: 100% !important;
        }
        
        .section-heading,
        .section-heading-alt {
            font-size: 1.3rem !important;
            text-align: center !important;
            padding: 0 12px !important;
            line-height: 1.3 !important;
        }
        
        .btn {
            font-size: 0.9rem !important;
            padding: 0.8rem 1.5rem !important;
            white-space: nowrap;
            min-width: auto;
        }
    }
    
    @media screen and (max-width: 350px) {
        .hero-section {
            padding: 0.75rem 10px;
        }
        
        .slide-content {
            padding: 0 10px;
        }
        
        .slide-content h1 {
            font-size: 1.5rem !important;
            line-height: 1.25;
        }
        
        .slide-content p {
            font-size: 0.875rem !important;
        }
        
        .stats-container {
            padding: 0.75rem 10px;
            gap: 0.875rem;
        }
        
        .stat-item {
            padding: 0.6rem 0.4rem;
        }
        
        .stat-item strong {
            font-size: 1.4rem;
        }
        
        .slide-image-container {
            padding: 0 10px;
        }
        
        .assessment-card {
            max-width: 270px !important;
            padding: 1.25rem 0.875rem !important;
        }
        
        .page-container {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }
    }
    
    @media screen and (max-width: 320px) {
        .hero-section {
            padding: 0.5rem 8px;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .slider-wrapper,
        .slider-container,
        .slides-wrapper {
            width: 100%;
            max-width: 100%;
            padding: 0;
        }
        
        .slide {
            width: 100%;
            max-width: 100%;
            padding: 0.5rem 0;
        }
        
        .slide-content {
            padding: 0 8px;
            width: 100%;
            max-width: 100%;
        }
        
        .slide-content h1 {
            font-size: 1.4rem !important;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        
        .slide-content p {
            font-size: 0.85rem !important;
            margin-bottom: 1rem;
        }
        
        .stats-container {
            padding: 0.5rem 8px;
            gap: 0.75rem;
            width: 100%;
            max-width: 100%;
            margin: 0.75rem 0;
        }
        
        .stat-item {
            padding: 0.5rem 0.25rem;
            font-size: 0.8rem;
            width: 100%;
            max-width: 100%;
        }
        
        .stat-item strong {
            font-size: 1.3rem;
        }
        
        .slide-image-container {
            padding: 0 8px;
            width: 100%;
            max-width: 100%;
        }
        
        .hero-card {
            margin: 0.5rem auto 0;
            padding: 0.25rem;
            gap: 0.25rem;
        }
        
        .hero-card .icon-placeholder {
            font-size: 0.7rem;
            padding: 0.2rem 0.4rem;
        }
        
        .assessments-section {
            padding: 1.5rem 8px;
        }
        
        .assessments-section h2 {
            font-size: 1.2rem;
            padding: 0 8px;
        }
        
        .assessment-card {
            max-width: 260px !important;
            padding: 1rem 0.75rem !important;
        }
        
        .page-container {
            padding-left: 8px !important;
            padding-right: 8px !important;
        }
        
        .header .container {
            padding: 0 8px;
        }
        
        .btn {
            font-size: 0.85rem !important;
            padding: 0.7rem 1.2rem !important;
        }
    }

