html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    }
    body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    }
    body.fade-in-ready {
    overflow-y: hidden;
    }
    body.fade-in-ready.animations-complete {
    overflow-y: auto;
    }
    .landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-color: #ffffff;
    opacity: 0;
    animation: fadeInPage 0.6s ease-out forwards;
    }
    @keyframes fadeInPage {
    to { opacity: 1; }
    }
    .category-card,
    .firm-detail-card,
    .trust-card,
    .article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .category-card:hover,
    .firm-detail-card:hover,
    .trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .btn-primary:hover,
    .btn-trade:hover {
    animation: pulse 0.4s ease;
    }
    @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
    html {
    scroll-behavior: auto;
    }
    }
    .main-nav {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    margin:0;
    padding:20px;
    border: 0;
    }
    .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    }
    .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 12px;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #00000026;
    }
    .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    }
    .logo-link {
    flex-shrink: 0;
    align-self: center;
    }
    .logo-img {
    height: 41px;
    width: 183px;
    display: block;
    }
    .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    }
    .hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: background-color 0.3s;
    }
    .hamburger::before,
    .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s;
    }
    .hamburger::before {
    top: -8px;
    }
    .hamburger::after {
    top: 8px;
    }
    .mobile-menu-btn.active .hamburger {
    background-color: transparent;
    }
    .mobile-menu-btn.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
    }
    .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 16px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active {
    display: flex;
    }
    .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px;
    background-color: #ececec;
    border-radius: 8px;
    width: fit-content;
    }
    .search-box {
    display: none;
    }
    .toggle-btn {
    padding: 4px 12px;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #4c4c4c;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    }
    .toggle-btn:hover {
    color: #ff6b00;
    }
    .toggle-btn.active {
    background-color: #333333;
    color: #ffffff;
    }
    .toggle-btn.active:hover {
    background-color: #ff6b00;
    }
    .nav-link {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #00000010;
    transition: color 0.2s;
    }
    .nav-link:last-child {
    border-bottom: none;
    }
    .nav-link:hover {
    color: #ff6b00;
    }
    .search-box {
    display: none;
    }
    .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: 20px 16px;
    }
    .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    }
    .hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #333333;
    border-radius: 10px;
    }
    .badge-text {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 22px;
    color: #ffffff;
    }
    .badge-image {
    max-height: 103px;
    width: auto;
    height: auto;
    object-fit: contain;
    }
    .hero-content h1 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
    }
    .hero-content p {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    margin: 0;
    text-align: center;
    }
    .desktop-only {
    display: none;
    }
    .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    }
    .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    }
    .trust-badges-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    }
    .trust-badges-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    }
    .trust-badges-fade.left {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
    }
    .trust-badges-fade.right {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
    }
    .trust-badges {
    display: flex;
    gap: 40px;
    padding: 16px 0;
    animation: scroll-badges 20s linear infinite;
    width: max-content;
    }
    @keyframes scroll-badges {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
    }
    .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 18px;
    white-space: nowrap;
    }
    .badge-icon {
    flex-shrink: 0;
    }
    .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    }
    .btn-primary {
    background-color: #333333;
    color: #ffffff;
    transition: background-color 0.2s ease;
    }
    .btn-primary:hover {
    background-color: #ff6b00;
    }
    .btn-secondary {
    background-color: #f4f4f4;
    color: #333333;
    }
    .btn-secondary:hover {
    background-color: #e8e8e8;
    }
    .btn-trade {
    width: 100%;
    background-color: #ff6b00;
    color: #ffffff;
    border-radius: 28px;
    padding: 12px 18px;
    }
    .btn-trade:hover {
    background-color: #e65e00;
    }
    .btn-white {
    background-color: #ffffff;
    color: #ff6b00 !important;
    }
    .btn-white:hover {
    background-color: #ff6b00;
    color: #fff !important;
    }
    .btn-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    }
    .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-bottom: 32px;
    width: 100%;
    }
    .section-header.centered {
    align-items: center;
    text-align: center;
    }
    .section-header h2 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    }
    .section-header.centered h2 {
    text-align: center;
    width: 100%;
    }
    .section-header p {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    }
    .section-heade .btn{
    margin-top: 15px;
    }
    .trending-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 12px 16px;
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    background-color: #ffffff;
    overflow: hidden;
    }
    .floating-icon {
    position: absolute;
    z-index: 1;
    display: none;
    visibility: hidden;
    opacity: 0;
    --parallax-y: 0px;
    will-change: transform;
    transform: translateY(var(--parallax-y));
    transition: filter 0.3s ease;
    }
    .icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    }
    .icon-bg.blue {
    background-color: #1427b9;
    padding: 20px;
    }
    .icon-bg.black {
    background-color: #000000;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    }
    .icon-bg.border {
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    padding: 0;
    }
    .icon-bg img {
    width: 100%;
    height: auto;
    }
    .icon-image {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    object-fit: cover;
    }
    .floating-icon .icon-bg,
    .floating-icon .icon-image {
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .floating-icon.icon-1 .icon-bg { 
    animation: float1 5s ease-in-out infinite;
    }
    .floating-icon.icon-2 .icon-image { 
    animation: float2 6s ease-in-out infinite;
    }
    .floating-icon.icon-3 .icon-bg { 
    animation: float3 7s ease-in-out infinite;
    }
    .floating-icon.icon-4 .icon-bg { 
    animation: float4 5.5s ease-in-out infinite;
    }
    .floating-icon.icon-5 .icon-bg { 
    animation: float5 6.5s ease-in-out infinite;
    }
    .floating-icon.icon-6 .icon-bg { 
    animation: float1 6s ease-in-out infinite;
    }
    @keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -10px) rotate(2deg); }
    50% { transform: translate(0, -18px) rotate(0deg); }
    75% { transform: translate(-5px, -8px) rotate(-2deg); }
    }
    @keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-8px, -12px) rotate(-3deg); }
    66% { transform: translate(4px, -20px) rotate(2deg); }
    }
    @keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6px, -15px) scale(1.05); }
    }
    @keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-6px, -8px) rotate(-2deg); }
    50% { transform: translate(0, -16px) rotate(0deg); }
    75% { transform: translate(6px, -6px) rotate(2deg); }
    }
    @keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5px, -14px) rotate(-3deg); }
    }
    .floating-icon:hover .icon-bg,
    .floating-icon:hover .icon-image {
    animation-play-state: paused;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
    .floating-icon.icon-1 { top: 50px; left: 15%; }
    .floating-icon.icon-2 { top: 50px; right: 20%; }
    .floating-icon.icon-3 { top: 35%; left: 18%; }
    .floating-icon.icon-4 { bottom: 80px; left: 10%; }
    .floating-icon.icon-5 { top: 35%; right: 13%; }
    .floating-icon.icon-6 { bottom: 100px; right: 17%; }
    .firms-carousel-section {
    width: 100%;
    max-width: 100vw;
    padding: 0 0 24px;
    background-color: #ffffff;
    overflow: hidden;
    }
    .carousel-wrapper {
    background-color: #f4f4f4;
    border-radius: 12px;
    margin: 0 12px;
    overflow: hidden;
    }
    .firms-carousel {
    display: flex;
    gap: 10px;
    padding: 16px 12px 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    }
    .firms-carousel:active {
    cursor: grabbing;
    }
    .firms-carousel.slick-slider {
    padding: 16px 0 0 0;
    }
    .firms-carousel .slick-list {
    padding: 0 !important;
    }
    .firms-carousel::-webkit-scrollbar {
    display: none;
    }
    .firm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 130px;
    scroll-snap-align: start;
    padding: 0 10px;
    box-sizing: border-box;
    min-width: 200px;
    }
    .firm-card h3 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    }
    .firm-image {
    width: 100%;
    height: 208px;
    border-radius: 24px;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: -10px;
    }
    .firm-card:hover .firm-image {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }
    .categories-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 12px;
    width: 100%;
    max-width: 100vw;
    border-bottom: 1px solid #00000026;
    overflow: hidden;
    }
    .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    }
    .category-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background-color: #f4f4f4;
    border-radius: 12px;
    border: 1px solid #00000005;
    }
    .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #ebebeb;
    border-radius: 12px;
    width: fit-content;
    }
    .category-icon {
    flex-shrink: 0;
    }
    .category-tag {
    font-family: "Neue Montreal-Regular", "Inter", Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    }
    .category-card h3 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.56px;
    }
    .category-card p {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 20px;
    color: #555555;
    margin: 0;
    line-height: 1.4;
    }
    .features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 12px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    }
    .filter-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    }
    .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    }
    .filter-tab {
    padding: 10px 16px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    background-color: #f4f4f4;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.2s;
    }
    .filter-tab:hover {
    background-color: #e8e8e8;
    }
    .filter-tab.active {
    background-color: #333333;
    color: #ffffff;
    }
    .filter-tab.active:hover {
    background-color: #ff6b00;
    }
    .filter-controls {
    display: none;
    align-items: center;
    gap: 16px;
    }
    .table-headers {
    display: none;
    }
    .header-firm,
    .header-programs {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 18px;
    color: #333333;
    white-space: nowrap;
    }
    .header-programs {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    color: #91959d;
    }
    .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 14px;
    color: #ffffff;
    background-color: #333333;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    }
    .filter-btn:hover {
    background-color: #ff6b00;
    }
    .firms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    }
    .firm-detail-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background-color: #f4f4f4;
    border-radius: 12px;
    }
    .firm-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    background-color: #e3e3e3;
    border-radius: 8px;
    width: fit-content;
    }
    .firm-badge span {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 12px;
    color: #333333;
    }
    .firm-header {
    display: flex;
    align-items: center;
    gap: 12px;
    }
    .firm-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #1427b9;
    flex-shrink: 0;
    }
    .firm-logo.alpha-capital {
    background-color: #1427b9;
    }
    .firm-logo.aqua-funded {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    }
    .firm-logo.qt-funded {
    background-color: #000000;
    }
    .firm-logo.think-capital {
    background-color: #000000;
    }
    .firm-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    }
    .firm-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    }
    .firm-info h4 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    .firm-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #d4d6d9;
    border-radius: 16px;
    }
    .firm-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #00000015;
    border-bottom: 1px solid #00000015;
    }
    .meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
    }
    .country-flag {
    font-size: 18px;
    }
    .country-code {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    }
    .firm-age {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    }
    .meta-icons {
    display: flex;
    gap: 8px;
    }
    .platform-icon {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 12px;
    color: #666666;
    padding: 4px 8px;
    background-color: #ffffff;
    border-radius: 4px;
    }
    .platform-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    }
    .firm-allocation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .allocation-label {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    color: #333333;
    }
    .allocation-value {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    }
    .allocation-bar {
    width: 100%;
    height: 4px;
    background-color: #c0c2c7;
    border-radius: 9999px;
    overflow: hidden;
    }
    .allocation-fill {
    height: 100%;
    background-color: #ff6b00;
    border-radius: 9999px;
    }
    .firm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    }
    .tag {
    padding: 6px 10px;
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 12px;
    color: #333333;
    background-color: #ededed;
    border-radius: 8px;
    }
    .view-all-btn {
    margin-top: 16px;
    }
    .trust-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 24px 12px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    }
    .trust-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    }
    .trust-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background-color: #f4f4f4;
    border-radius: 12px;
    }
    .trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    }
    .trust-card h3 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    margin: 0;
    }
    .trust-card p {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    }
    .transparency-banner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
    background-color: #ff6400;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    }
    .transparency-banner::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(238, 0, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    }
    .transparency-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 217, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    }
    .banner-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
    }
    .transparency-banner .btn{
    position: relative;
    z-index: 2;
    }
    .banner-icon {
    flex-shrink: 0;
    }
    .banner-text {
    flex: 1;
    }
    .banner-text h3 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    }
    .banner-text p {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    }
    .articles-section:not(.category-content) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 12px;
    width: 100%;
    max-width: 100vw;
    background-color: #f4f4f4;
    overflow: hidden;
    }
    .articles-section h2 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 30px;
    text-align: center;
    width: 100%;
    }
    .articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: 1280px;
    }
    .article-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    }
    .article-thumbnail {
    width: 100%;
    height: 140px;
    min-height: 140px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    }
    .article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    }
    .article-thumbnail:hover img {
    transform: scale(1.05);
    }
    .article-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    .article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: #33333312;
    border-radius: 8px;
    font-size: 14px;
    color: #808080;
    font-weight: 500;
    width: fit-content;
    }
    .article-content h3 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: normal;
    }
    .article-content h3 a{
    color: #333;
    text-decoration: none;
    }
    .faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 12px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    }
    .faq-section h2 {
    max-width: 600px;
    text-align: center;
    margin: 0 auto 40px;
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    }
    .faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 706px;
    }
    .faq-item {
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    }
    .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    list-style: none;
    }
    .faq-question::-webkit-details-marker {
    display: none;
    }
    .faq-question span {
    flex: 1;
    }
    .faq-icon {
    flex-shrink: 0;
    transition: transform 0.2s;
    width: 16px;
    height: 16px;
    }
    .faq-item[open] .faq-icon {
    transform: rotate(45deg);
    }
    .faq-answer {
    padding: 0 24px 20px;
    }
    .faq-answer p {
    font-family: "Neue Montreal-Regular", Helvetica, sans-serif;
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
    }
    .social-connect {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    }
    .connect-label {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 25px;
    color: #333333;
    }
    .social-icons {
    display: flex;
    gap: 16px;
    }
    .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: color 0.2s;
    border-radius: 100px;
    background: #383D38;
    }
    .social-link:hover {
    background: #ff6b00;
    }
    .newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 12px 32px;
    width: 100%;
    max-width: 100vw;
    border-top: 1px solid #00000033;
    overflow: hidden;
    }
    .newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 600px;
    }
    .newsletter-content h2 {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    }
    .newsletter-content p {
    font-family: "Neue Montreal-Regular", Helvetica, sans-serif;
    font-size: 15.217px;
    max-width: 400px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    }
    .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    }
    .newsletter-section .gform_wrapper form{
    flex-direction: column;
    width: 303px;
    position: relative;
    z-index: 2;
    }
    .newsletter-section .gform_wrapper .gform_footer {
    padding-top: 0;
    }
    .newsletter-section .gform_wrapper .gform_button{
    border-radius: 32px;
    background: #333;
    width: 100%;
    }
    .newsletter-section .gform_wrapper .gform_button:hover{
    background: #ff6b00;
    }
    .gform_wrapper input[type=email]{
    border-radius: 40px;
    background: #F4F4F4;
    margin-bottom: 10px;
    }
    .select-svg svg{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width:100%;
    }
    @media screen and (max-width: 1023px) {
    .select-svg{
    margin-top: 5rem;
    }
    }
    .footer {
    width: 100%;
    max-width: 100vw;
    padding: 24px 12px;
    background-color: #000000;
    overflow: hidden;
    }
    .footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    }
    .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    }
    .footer-logo {
    text-decoration: none;
    display: block;
    }
    .footer-logo-img {
    filter: brightness(0) invert(1);
    }
    .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    }
    .footer-link {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
    }
    .footer-link:hover {
    color: #ff6b00;
    }
    .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    }
    .footer-legal p {
    font-family: "Neue Montreal-Regular", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    }
    .footer-legal a {
    color: #ffffff;
    text-decoration: underline;
    }
    .footer-legal strong {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    }
    .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    }
    .footer-bottom-link {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    }
    @media (min-width: 768px) {
    .main-nav {
    padding: 20px 24px;
    }
    .nav-container {
    padding: 20px;
    border-radius: 20px;
    }
    .hero {
    padding: 60px 24px;
    gap: 60px;
    }
    .trending-section {
    padding: 100px 24px 50px;
    min-height: 400px;
    gap: 36px;
    }
    .carousel-wrapper {
    margin: 0 24px;
    border-radius: 28px;
    }
    .categories-section,
    .features-section,
    .trust-section,
    .faq-section {
    padding: 50px 24px;
    }
    .faq-section h2 {
    font-size: 32px;
    }
    .articles-section:not(.category-content) {
    padding: 50px 24px;
    }
    .articles-section h2 {
    font-size: 32px;
    }
    .newsletter-content h2 {
    font-size: 32px;
    }
    .newsletter-section {
    padding: 50px 24px 80px;
    }
    .footer {
    padding: 50px 24px;
    }
    .hero-badge {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    }
    .badge-text {
    font-size: 28px;
    }
    .hero-content h1 {
    font-size: 48px;
    }
    .hero-content h1 br{
    display: none;
    }
    .desktop-only {
    display: inline;
    }
    .hero-cta-group {
    flex-direction: row;
    max-width: none;
    }
    .btn {
    padding: 14px 24px;
    font-size: 16px;
    }
    .section-header h2 {
    font-size: 32px;
    }
    .section-header p {
    font-size: 16px;
    }
    .trust-card {
    padding: 24px;
    }
    .trust-icon {
    width: 72px;
    height: 72px;
    }
    .trust-card h3 {
    font-size: 20px;
    }
    .trust-card p {
    font-size: 20px;
    }
    .article-thumbnail {
    height: 180px;
    min-height: 180px;
    }
    .article-content h3 {
    font-size: 18px;
    }
    .faq-question {
    padding: 16px 20px;
    font-size: 14px;
    }
    .firm-card {
    flex: 0 0 180px;
    padding: 0 10px;
    min-width: 220px;
    }
    .firm-card h3 {
    font-size: 14px;
    }
    .firm-image {
    height: 208px;
    border-radius: 24px;
    }
    .floating-icon {
    display: block;
    visibility: visible;
    opacity: 1;
    }
    .category-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    .firms-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    .trust-cards {
    grid-template-columns: repeat(3, 1fr);
    }
    .transparency-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    }
    .banner-content {
    flex: 1;
    }
    .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    .article-thumbnail {
    height: 220px;
    min-height: 220px;
    }
    .carousel-wrapper {
    margin: 0 24px;
    border-radius: 20px;
    }
    .firms-carousel {
    padding: 28px 20px 0 20px;
    gap: 20px;
    }
    .firms-carousel.slick-slider {
    padding: 28px 0 0 0;
    }
    .firm-card {
    flex: 0 0 280px;
    padding: 0 10px;
    min-width: 280px;
    }
    .firm-card h3 {
    font-size: 16px;
    }
    .firm-image {
    height: 208px;
    border-radius: 24px;
    }
    .table-headers {
    display: flex;
    align-items: center;
    gap: 16px;
    }
    .footer {
    padding: 48px 24px;
    }
    .footer-logo .logo-img {
    height: 36px;
    max-width: 160px;
    }
    .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    }
    .footer-link {
    font-size: 15px;
    }
    .footer-legal p {
    font-size: 13px;
    }
    .category-card {
    padding: 24px;
    border-radius: 32px;
    }
    .category-card h3 {
    font-size: 22px;
    }
    .firm-detail-card {
    padding: 24px;
    border-radius: 20px;
    }
    .trust-card {
    padding: 28px;
    border-radius: 32px;
    }
    .faq-item {
    border-radius: 14px;
    }
    .faq-question {
    font-size: 16px;
    padding: 18px 22px;
    }
    .article-thumbnail {
    border-radius: 14px;
    }
    .article-content h3 {
    font-size: 20px;
    }
    .hero-cta-group .btn {
    width: auto;
    }
    }
    @media (min-width: 1024px) {
    .main-nav {
    padding: 24px 80px;
    }
    .hero {
    padding: 50px 80px;
    gap: 75px;
    }
    .hero-content h1 {
    font-size: 56px;
    }
    .section-header h2 {
    font-size: 48px;
    }
    .section-header p {
    font-size: 18px;
    }
    .trending-section {
    padding: 150px 80px 80px;
    }
    .carousel-wrapper {
    margin: 0 80px;
    }
    .firms-carousel {
    padding: 36px 40px 0 40px;
    gap: 32px;
    justify-content: center;
    }
    .firms-carousel.slick-slider {
    padding: 60px 0 0 0;
    }
    .firm-card {
    padding: 0 10px;
    min-width: 320px;
    }
    .firm-card h3 {
    font-size: 24px;
    }
    .firm-image {
    height: 208px;
    border-radius: 30px;
    }
    .categories-section {
    padding: 100px 80px 60px;
    }
    .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    }
    .category-card h3 {
    font-size: 28px;
    }
    .features-section {
    padding: 60px 80px;
    }
    .filter-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    }
    .filter-controls {
    display: flex;
    }
    .firms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    }
    .trust-section {
    padding: 50px 80px;
    }
    .trust-card h3 {
    font-size: 28px;
    }
    .articles-section {
    padding: 50px 80px;
    }
    .articles-section h2 {
    font-size: 48px;
    }
    .newsletter-content h2 {
    font-size: 48px;
    }
    .articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    }
    .article-thumbnail {
    height: 235px;
    min-height: 235px;
    }
    .article-content h3 {
    font-size: 26px;
    }
    .faq-section {
    padding: 60px 80px;
    }
    .faq-section h2 {
    font-size: 48px;
    }
    .faq-question {
    font-size: 20px;
    padding: 24px;
    }
    .newsletter-section {
    padding: 60px 80px 120px;
    }
    .footer {
    padding: 60px 80px;
    }
    .footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    }
    .footer-brand {
    flex-shrink: 0;
    max-width: 280px;
    }
    .footer-logo .logo-img {
    height: 40px;
    max-width: 180px;
    }
    .footer-link {
    font-size: 16px;
    }
    .footer-legal {
    max-width: 800px;
    flex: 1;
    }
    .footer-legal p {
    font-size: 14px;
    }
    }
    @media (min-width: 1280px) {
    .mobile-menu-btn {
    display: none;
    }
    .main-nav {
    padding: 24px 80px;
    }
    .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    flex: 1;
    margin-left: 65px;
    }
    .nav-link {
    padding: 0;
    border-bottom: none;
    font-size: 15px;
    }
    .search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background-color: #ffffff;
    border-radius: 20px;
    min-width: 202px;
    }
    .search-icon {
    flex-shrink: 0;
    }
    .search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 15px;
    color: #333333;
    outline: none;
    }
    .search-input::placeholder {
    color: #999999;
    }
    .hero-content-wrapper {
    max-width: 800px;
    }
    .hero-content h1 {
    font-size: 64px;
    }
    .categories-section,
    .features-section,
    .trust-section,
    .faq-section,
    .newsletter-section {
    max-width: 1440px;
    margin: 0 auto;
    }
    .articles-section:not(.category-content) {
    max-width: 100%;
    }
    .articles-section .articles-grid {
    max-width: 1280px;
    margin: 0 auto;
    }
    .carousel-wrapper {
    max-width: 1376px;
    margin: 0 auto;
    }
    .floating-icon.icon-1 { left: 8%; top: 40px; }
    .floating-icon.icon-2 { right: 12%; top: 40px; }
    .floating-icon.icon-3 { left: 10%; top: 40%; }
    .floating-icon.icon-4 { left: 5%; bottom: 70px; }
    .floating-icon.icon-5 { right: 5%; top: 40%; }
    .floating-icon.icon-6 { right: 10%; bottom: 80px; }
    }
    @media screen and (max-width:640px){
    .hero-content h1 br{
    display: none;
    }
    }
    .nav-links .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    }
    .nav-links .nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    .nav-links .nav-link {
    color: #333333;
    font-family: "Neue Montreal-Medium", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    }
    .nav-links .nav-link:hover {
    color: #ff6b00;
    }
    .footer-nav .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    }
    .footer-nav .footer-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    .footer .footer-nav .footer-link,
    .footer .footer-nav .footer-menu a {
    color: #ffffff !important;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0;
    }
    .footer .footer-nav .footer-link:hover,
    .footer .footer-nav .footer-menu a:hover {
    color: #ff6b00 !important;
    }
    @media (max-width: 768px) {
    .nav-links.active .nav-menu li {
    margin: 0;
    }
    .nav-links .nav-link {
    padding: 12px 0;
    }
    }
    @media (min-width: 769px) {
    .nav-links .nav-menu {
    flex-direction: row;
    gap: 0;
    align-items: center;
    }
    .nav-links .nav-menu li {
    margin: 0;
    }
    .nav-links .nav-link {
    padding: 8px 12px;
    }
    .footer-nav .footer-menu {
    flex-wrap: wrap;
    gap: 20px;
    }
    .footer .footer-nav .footer-link,
    .footer .footer-nav .footer-menu a {
    font-size: 15px;
    }
    }
    .nav-links .menu-item,
    .footer-nav .menu-item {
    background: none;
    border: none;
    }
    .nav-links .current-menu-item .nav-link,
    .nav-links .current_page_item .nav-link {
    color: #ff6b00;
    font-weight: 700;
    }
    .footer-nav .current-menu-item .footer-link,
    .footer-nav .current_page_item .footer-link {
    color: #ff6b00;
    font-weight: 700;
    }
    .program-card .program-name {
    font-size: 13px;
    color: #666;
    margin: 4px 0 0;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-weight: 400;
    }
    .program-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #00000015;
    border-bottom: 1px solid #00000015;
    }
    .program-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .detail-label {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 13px;
    color: #666;
    }
    .detail-value {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    }
    .program-price {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    }
    .old-price {
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    }
    .new-price,
    .current-price {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 18px;
    color: #333;
    }
    .new-price {
    color: #ff6b00;
    }
    .features-section--embedded {
    padding: 0;
    margin-top: 0;
    }
    .firm-detail-card,
    .program-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .firm-detail-card[style*="display: none"],
    .program-card[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
    }
    .firms-grid.filtering {
    position: relative;
    opacity: 0.5;
    pointer-events: none;
    }
    .firms-grid.filtering::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }
    .no-results-message {
    text-align: center;
    padding: 60px 20px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 18px;
    color: #666;
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin: 20px 0;
    }
    .tabs.offers--cards{
    border: 0;
    margin: 0;
    }
    .offers--cards .offers__row .tabs__nav{
    border: 0 !important;
    border-right: 1px solid #D4D6D9 !important;
    padding-left: 0;
    margin-right: 20px;
    padding-right: 10px;
    }
    .offers--cards  .offers__row .btn{
    background: #FF6B00;
    width: 90px;
    font-size: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    }
    .offers--cards .tab {
    display: none;
    transition: all 0.3s ease;
    }
    .offers--cards .tab.active {
    display: flex;
    gap: 0;
    transition: all 0.3s ease;
    }
    .offers--cards .filter-section-cards {
    width: 0;
    min-width: 0;
    visibility: hidden;
    overflow: hidden;
    border-left: 1px solid #e0e0e0;
    transition: width 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    padding: 24px;
    height: auto;
    order: 2;
    border-radius: 0;
    margin-right: -50px;
    }
    .offers--cards .filter-section-cards.show,
    .offers--cards .filter-section-cards.filter-available {
    width: 300px;
    min-width: 300px;
    visibility: visible;
    display: block;
    margin-left: 30px;
    margin-right: 0;
    }
    .offers--cards .filter-section form{
    border: 0;
    padding-right: 0;
    }
    .offers--cards .features-section--embedded {
    order: 1;
    }
    .offers--cards .filter-title {
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 18px;
    color: #333;
    margin: 0 0 20px;
    clear: both;
    }
    .offers--cards .filter-section-cards .filter-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
    .offers--cards .filter-section-cards .filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    .offers--cards .filter-section-cards label {
    font-size: 14px;
    color: #333;
    }
    .offers--cards .features-section--embedded {
    flex: 1;
    margin-top: 0;
    min-width: 0;
    transition: all 0.3s ease;
    }
    .filter-overlay {
    display: none !important;
    }
    @media (max-width: 767px) {
    .offers--cards .filter-section-cards.show {
    width: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #fff;
    overflow-y: auto;
    }
    .offers--cards .filter-section-cards{
    margin:0;
    padding: 0;
    border: 0;
    }
    .offers__head .offers__row {
    justify-content: center;
    }
    .tabs__nav .list .option{
    min-width: auto !important;
    }
    }
    .offers--cards .filter-btn .lucide-list-filter {
    display: inline-block;
    }
    .offers--cards .filter-btn .lucide-arrow-left-to-line {
    display: none;
    }
    .offers--cards .filter-btn.filter-open .lucide-list-filter {
    display: none;
    }
    .offers--cards .filter-btn.filter-open .lucide-arrow-left-to-line {
    display: inline-block;
    }
    .offers--cards .offers__wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
    .offers--cards .offers__body {
    margin-top: 0;
    }
    .offers--cards .offers__head {
    margin-bottom: 24px;
    }
    .offers--cards[data-select-firm="cfd"] .filter-tabs,
    .offers--cards[data-select-firm="futures"] .filter-tabs {
    display: none !important;
    }
    .offers--cards .offers__head .filter-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 0;
    }
    .offers--cards .filter-controls {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    }
    .offers--cards .offers__row {
    display: flex;
    align-items: center;
    gap: 12px;
    }
    .offers--cards .filter-tabs .filter-tab {
    padding: 10px 16px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 18px;
    color: #333333;
    background-color: #f4f4f4;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.2s;
    }
    .offers--cards .filter-tabs .filter-tab:hover {
    background-color: #e8e8e8;
    }
    .offers--cards .filter-tabs .filter-tab.active {
    background-color: #333333;
    color: #ffffff;
    font-weight: 700;
    }
    .offers--cards .filter-tabs .filter-tab.active:hover {
    background-color: #ff6b00;
    }
    @media (max-width: 900px) {
    .offers--cards .filter-tabs .filter-tab {
    display: none !important;
    }
    .offers--cards .filter-tabs {
    background-color: #333;
    border-radius: 12px;
    padding: 12px 40px 12px 16px;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    width: 100%;
    }
    .offers--cards .filter-tabs::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease;
    }
    .offers--cards .filter-tabs.open::after {
    transform: translateY(-50%) rotate(-90deg);
    }
    .offers--cards .filter-tabs.open {
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0;
    align-items: stretch;
    }
    .offers--cards .filter-tabs.open::before {
    display: none;
    }
    .offers--cards .filter-tabs.open::after {
    display: none;
    }
    .offers--cards .filter-tabs.open .filter-tab {
    display: flex !important;
    position: static;
    background: #fff;
    border-radius: 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 16px;
    justify-content: flex-start;
    width: 100%;
    }
    .offers--cards .filter-tabs.open .filter-tab:hover {
    background-color: #f8f8f8;
    }
    .offers--cards .filter-tabs.open .filter-tab.active {
    background-color: #333;
    color: #fff;
    }
    .offers--cards .filter-tabs.open .filter-tab:first-child {
    border-radius: 12px 12px 0 0;
    }
    .offers--cards .filter-tabs.open .filter-tab:last-child {
    border-radius: 0 0 12px 12px;
    border-bottom: none;
    }
    .offers--cards .filter-tabs:not(.open)::before {
    content: attr(data-active-text);
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 16px;
    color: #fff;
    }
    .offers--cards .filter-tabs:not(.open) {
    background-color: #333;
    color: #fff;
    }
    .offers--cards .filter-tabs:not(.open)::after {
    color: #fff;
    }
    .offers--cards .offers__row {
    flex-wrap: wrap;
    width: 100%;
    }
    .offers--cards .offers__row .tabs__nav {
    flex: 1;
    min-width: 150px;
    }
    .offers--cards .filter-tabs {
    flex: 1;
    min-width: 150px;
    }
    }
    @media (min-width: 768px) {
    .offers--cards .offers__head .filter-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    }
    .offers--cards[data-select-firm="cfd"] .offers__head .filter-bar,
    .offers--cards[data-select-firm="futures"] .offers__head .filter-bar{
    justify-content: flex-end;
    }
    .offers--cards .filter-controls {
    width: auto;
    }
    }
    @media (min-width: 901px) {
    .offers--cards .filter-tabs .filter-tab {
    display: inline-flex !important;
    position: static !important;
    }
    }
    .load-more-articles{
    margin-top: 20px;
    }
    .load-more-articles.loading {
    opacity: 0.7;
    cursor: wait;
    }
    .load-more-articles.loading .btn-arrow,
    .ajax-load-btn:disabled .btn-arrow {
    animation: spin 1s linear infinite;
    }
    .ajax-load-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    }
    .offers--cards .load-more-btn .spinner {
    display: inline-block;
    margin-left: 8px;
    border: none;
    background: none;
    width: auto;
    height: auto;
    }
    .offers--cards .load-more-btn .spinner svg {
    animation: spinCards 1s linear infinite;
    display: block;
    }
    .offers--cards .load-more-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    }
    @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
    }
    @keyframes spinCards {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
    }
    .newsletter-form-wrapper form,
    .newsletter-form-wrapper .gform_wrapper form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    }
    .newsletter-form-wrapper input[type="email"],
    .newsletter-form-wrapper .ginput_container_email input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d4d6d9;
    border-radius: 12px;
    font-family: "Neue Montreal-Medium", Helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    }
    .newsletter-form-wrapper input[type="email"]:focus,
    .newsletter-form-wrapper .ginput_container_email input:focus {
    outline: none;
    border-color: #ff6b00;
    }
    .newsletter-form-wrapper input[type="email"]::placeholder {
    color: #91959d;
    }
    .newsletter-form-wrapper button[type="submit"],
    .newsletter-form-wrapper .gform_button {
    width: 100%;
    padding: 16px 24px;
    background-color: #ff6b00;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: "Neue Montreal-Bold", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }
    .newsletter-form-wrapper button[type="submit"]:hover,
    .newsletter-form-wrapper .gform_button:hover {
    background-color: #e55f00;
    }
    .newsletter-form-wrapper .gfield_label {
    display: none;
    }
    .newsletter-form-wrapper .gform_fields {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    .newsletter-form-wrapper .gfield {
    margin: 0;
    padding: 0;
    }
    @media (min-width: 768px) {
    .newsletter-form-wrapper form,
    .newsletter-form-wrapper .gform_wrapper form {
    flex-direction: row;
    gap: 16px;
    }
    .newsletter-form-wrapper input[type="email"],
    .newsletter-form-wrapper .ginput_container_email input {
    flex: 1;
    }
    .newsletter-form-wrapper button[type="submit"],
    .newsletter-form-wrapper .gform_button {
    width: auto;
    min-width: 180px;
    }
    }
    body.fade-in-ready .fade-in-element:not(.loaded) {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    body.fade-in-ready .fade-in-element.loaded {
    opacity: 1 !important;
    transform: translateY(0) !important;
    }
    body.fade-in-ready .header, body.fade-in-ready .section-banner-v3, body.fade-in-ready .section-featured-by-spf, body.fade-in-ready .featured-section, body.fade-in-ready .banner-v3-content, body.fade-in-ready .block-spf-trust, body.fade-in-ready .hero, body.fade-in-ready .jumbotron, body.fade-in-ready .banner, body.fade-in-ready .guide-section, body.fade-in-ready .landing-page, body.fade-in-ready .section-comparison-table, body.fade-in-ready .section-form-column, body.fade-in-ready .section-cta-v2, body.fade-in-ready .section--faq, body.fade-in-ready .footer, body.fade-in-ready .main .container>section, body.fade-in-ready .main .container>div, body.fade-in-ready section[class*=section], body.fade-in-ready .main-content>*, body.fade-in-ready .article-content, body.fade-in-ready .sidebar, body.fade-in-ready .widget, body.fade-in-ready .content-area, body.fade-in-ready .site-content, body.fade-in-ready .entry-content, body.fade-in-ready .post-content, body.fade-in-ready h2.news-articles-top-stories, body.fade-in-ready .main h1, body.fade-in-ready .main h2, body.fade-in-ready .main h3, body.fade-in-ready .main h4, body.fade-in-ready .main h5, body.fade-in-ready .main h6{
    opacity: 1;
    transform: none;
    }
    [data-aos] {
    transition-duration: 400ms !important;
    }
    [data-aos][data-aos-delay] {
    transition-delay: 0ms !important;
    }
    [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    }