        header {
    position: relative;
    top: 0;
    left: 0; 
    width: 100%;
    padding: 16px 0px;
    z-index: 99;
}
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}
.header_nav nav ul {
    display: flex;
    column-gap: 56px;
}
.header_nav nav ul {
    align-items: center;
}
.logo img {
    width: 186px;
}
header .header_inner .header_nav a img.logo-nav {
    width: 70px;
    height: auto;
}
header .header_inner .header_nav{
    display: flex;
    gap: 24px;
    align-items: center;
}

/* CSS BOILER PLATE */

html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Micron Basis';
}

:root {
    --dark-grey: #0A0A0A;
    --blue: #0068FF;
    --gradient-purple: linear-gradient(180deg, #440FDE 0%, #600665 100%);
    --light-grey: #111111;
    --tg: -webkit-linear-gradient(180deg, #440FDE 0%, #600665 100%);;
}
/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Background color of the track */
    /*border-radius: 10px;  */
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-purple);
    /* Color of the scrollbar handle */
    /*border-radius: 10px; */
    border: 3px solid #f1f1f1;
    /* Border color around the scrollbar handle */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-purple);
    /* Darker shade of #FFC30D on hover */
}
body{
    background-color: var(--dark-grey);
}
body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Micron Basis';
}

body ul li {
    font-family: 'Micron Basis';
}

body a {
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Micron Basis';
}

body .page-wrapper *:focus,
.ui-dialog *:focus {
    outline: 0;
    box-shadow: none;
    border: 0;
    font-family: 'Micron Basis';
}

a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0
}

html body a:focus {
    outline: none;
    outline-offset: none;
}

.navigation_main nav ul li a {
    color: #fff;
    font-family: 'Micron Basis';
}

body p {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-family: 'Micron Basis';;
}

body h1 {
    font-size: 64px;
    line-height:74px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Micron Basis';
}

body h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #fff;
    font-family: 'Micron Basis';
}

body h3 {
    font-size: 32px;
    line-height: 39px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Micron Basis';
}

body h4 {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Micron Basis';;
    font-weight: 600;
}

body h5 {
    font-family: 'Micron Basis';
}

body h6 {
    font-family: 'Micron Basis';
}

body img {
    width: 100%;
    max-width: none;
}

.padding {
    padding: 96px 0px;
}


/* Container Styles - Bootstrap-like with 1440px max width */

/* Default container - fluid container that's always 100% width */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* Container with max-width at each breakpoint */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

/* Extra small devices - Full width container with padding */
/* No media query since this is the default in Bootstrap */

/* Small devices (sm) - 576px and up */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (md) - 768px and up */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (lg) - 992px and up */
@media (min-width: 1040px) {
    .container {
        max-width: 1040px;
    }
}

/* Extra large devices (xl) - 1200px and up */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Extra extra large devices (xxl) - 1400px and up - Bootstrap 5 addition */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Custom largest breakpoint (xxxl) - 1600px and up */
@media (min-width: 1480px) {
    .container {
        max-width: 1440px;
    }
}

/* Container that's 100% width until specific breakpoint */
.container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-sm {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-sm {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container-sm {
        max-width: 1440px;
    }
}

.container-md {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-md {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-md {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-md {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container-md {
        max-width: 1440px;
    }
}

.container-lg {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .container-lg {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-lg {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-lg {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container-lg {
        max-width: 1440px;
    }
}

.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container-xl {
        max-width: 1440px;
    }
}

.container-xxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {
    .container-xxl {
        max-width: 1440px;
    }
}

.container-xxxl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1600px) {
    .container-xxxl {
        max-width: 1440px;
    }
}

/* Hero Banner */

section.hero_banner {
    position: relative;
}
.hero_content_outer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.hero_content h1 span{
    display: block;
    background: var(--tg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero_content h1 {
    color: #fff;
    margin-bottom: 24px;
}
.hero_content p{
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 48px;
}
.hero_content {
    width: 50%;
}


/* CTA MAIN */

a.cta_main {
    color: #fff;
    font-size: 18px;
    background: var(--blue);
    padding: 12px 42px;
    border-radius: 85px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-block;
  }



/* Common Heading */

.micron_heading {
    margin-bottom: 38px;
}
.micron_heading h2 span {
    background: var(--tg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.micron_heading h2 {
    margin: 0;
}
.micron_heading span.head_line {
    height: 5px;
    width: 100%;
    background: var(--blue);
    display: inline-block;
}
.micron_heading {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: center;
}

/* SSD SEC */

.ssd_grid_image {
    margin-bottom: 48px;
}
.ssd_box {
    padding: 32px;
    background: var(--light-grey);
    position: relative;
    border-radius: 12px;
    transition: background-color 0.7s ease;
    /* Define a specific property to transition */
}
.ssd_box * {
    z-index: 9999;
}
.ssd_box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #440FDE 0%, #600665 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: 9;
}

.ssd_box:hover:before {
    opacity: 1;
}
.ssd_iten_inner {
    height: 218px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.read_more .ssd_bt_icon {
    height: 40px;
    width: 40px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.read_more {
    color: #fff;
    font-size: 18px;
    display: flex;
    column-gap: 12px;
    line-height: 28px;
    align-items: center;
}
.ssd_grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}
.ssd_batch {
    position: absolute;
    right: 16px;
    top: 16px;
    background: #FFFFFF33;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 50px;
}
section.ssd_sec {
    border-bottom: 1px solid #081D3B;
}

/* Crucial Section */

.crucial_tags ul li {
    color: #fff;
    background: #0068FF33;
    font-size: 14px;
    padding: 12px 16px;
    line-height: 1;
    border-radius: 40px;
}
.crucial_content {
    margin-bottom: 24px;
}
.crucial_tags ul {
    display: flex;
    column-gap: 8px;
    margin-bottom: 40px;
}
.crucial_grid > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.crucial_box {
    background: var(--light-grey);
    padding: 28px;
    padding-bottom: 32px;
    border-radius: 12px;
}
.crucial_image {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
}
.crucial_price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
section.crucian_gaming_sec.padding {
    border-bottom: 1px solid #081D3B;
}


/* Dram Sec */

.dram_row {
    background: var(--light-grey);
    padding: 28px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.dram_top_tag {
    color: #fff;
    background: #0068FF33;
    font-size: 14px;
    padding: 12px 16px;
    line-height: 1;
    border-radius: 40px;
    width: fit-content;
    margin-bottom: 24px;
}
.dram_image {
    border-radius: 12px;
    overflow: hidden;
}

.dram_tags ul li {
    color: #fff;
    background: #0068FF33;
    font-size: 14px;
    padding: 12px 16px;
    line-height: 1;
    border-radius: 40px;
}
.dram_tags ul {
    display: flex;
    column-gap: 8px;
}
.dram_cont_main p {
    margin-bottom: 24px;
}
.dram_description {
    margin: 32px 0px;
    width: 85%;
}
.dram_usp_box {
    display: grid;
    grid-template-columns: 16% 1fr;
    gap: 18px;
}
.dram_image_outer {
    position: relative;
}
.dram_tag span {
    font-size: 32px;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}
.dram_tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #0068FF;
    padding: 12px 16px;
    border-radius: 13px;
}
.du_cont p {
    font-size: 14px;
    line-height: 1;
}
.dram_usps ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.dram_usps {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #FFFFFF1A;
}
.dram_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dpl_top {
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.dpl_top h3.price {
    margin: 0;
}
.dpl_top span.cut_price {
    font-size: 16px;
    line-height: 26px;
    text-decoration: line-through;
    color: #FFFFFF80;
}
span.dpl_tax {
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF80;
}
section.dram_sec.padding {
    border-bottom: 1px solid #081D3B;
}
section.section.video_sec {
    border-bottom: 1px solid #081D3B;
}



/* Video Sec */

.videos_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.video_box_image {
    border-radius: 12px;
    overflow: hidden;
}
.video_box_content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
}
.video_box_content {
    padding: 24px 34px 32px 24px;
    background: var(--light-grey);
}
.video_box {
    border-radius: 12px;
}
.end_sec_content p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 44px;
}
.end_sec_row {
    display: grid;
    grid-template-columns: 1fr 32%;
}
.end_sec_ctas {
    display: flex;
    justify-content: space-between;
}
a.cta_main.opp {
    background: transparent;
    color: var(--blue);
    border: 1px solid;
}
section.end_sec {
    background-size: cover;
    background-repeat: no-repeat;
}
.footer_top {
    display: grid;
    grid-template-columns: 16.112% 1fr;
    gap: 24%;
}
.footer_right {
    display: flex;
    justify-content: space-between;
}
.footer_nav ul {
    display: flex
;
    flex-direction: column;
    row-gap: 12px;
}
.footer_nav ul li a {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
}
.footer_nav h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 24px;
}
.policies_links a {
    font-size: 18px;
    color: #fff;
}

.policies_links {
    display: flex;
    column-gap: 32px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 96px;
    border-top: 1px solid #FFFFFF12;
}


/* New Footer */

.footer_new_inner {
    display: grid;
    grid-template-columns: 50% 1fr;
}
.footer_right ul {
    display: flex;
    column-gap: 24px;
}
.footer_right {
    justify-content: end;
}
.footer_logo img {
    width: 215px;
}
.footer_logo {
    margin-bottom: 48px;
}
.footer_social ul li svg {
    width: 40px;
}



/* ANIMATIONS. */

/* Box Shadow Effects */
.ssd_box, .crucial_box, .dram_row, .video_box {
    box-shadow: 0 8px 24px rgba(68, 15, 222, 0.15);
    transition: all 0.4s ease;
}

.ssd_box:hover, .crucial_box:hover, .video_box:hover , .dram_row:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(68, 15, 222, 0.25);
}

/* Nav Menu Animation */
.header_nav ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.header_nav ul li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #440FDE, #600665);
    transition: width 0.3s ease;
}

/*.header_nav ul li a:hover {*/
/*    color: #0068FF;*/
/*}*/

.header_nav ul li a:hover:after {
    width: 100%;
}

/* CTA Button Effects */
a.cta_main {
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

a.cta_main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 104, 255, 0.3);
}

a.cta_main:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: left 0.7s ease;
    z-index: -1;
}

a.cta_main:hover:before {
    left: 100%;
}

a.cta_main.opp {
    transition: all 0.4s ease;
    border: 1px solid var(--blue);
}

a.cta_main.opp:hover {
    background: rgba(0, 104, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 104, 255, 0.15);
}

/* Card Glow Effects */
.video_box:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, #440FDE, #600665, #0068FF, #440FDE);
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.crucial_box:hover:before, .video_box:hover:before {
    opacity: 1;
    animation: gradientBG 3s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Read More Link Enhancement */
a.read_more {
    transition: all 0.3s ease;
}

a.read_more:hover {
    color: #0068FF;
}

/* a.read_more .ssd_bt_icon {
    transition: all 0.3s ease;
}

a.read_more:hover .ssd_bt_icon {
    transform: translateX(5px);
    background: linear-gradient(45deg, #440FDE, #600665);
} */

/* Tags Hover Effect */
.crucial_tags ul li, .dram_tags ul li, .dram_top_tag {
    transition: all 0.3s ease;
    cursor: default;
}

.crucial_tags ul li:hover, .dram_tags ul li:hover, .dram_top_tag:hover {
    background: rgba(0, 104, 255, 0.4);
    transform: translateY(-2px);
}

/* Price Hover Animation */
.price {
    transition: all 0.3s ease;
    position: relative;
}

.crucial_price:hover .price, .dram_price:hover .price {
    color: #0068FF;
    text-shadow: 0 0 8px rgba(0, 104, 255, 0.5);
}

/* USP Box Enhancement */
.dram_usp_box {
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 8px;
}

.dram_usp_box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Video Box Play Button Overlay */
.video_box_image {
    position: relative;
}

/* .video_box_image:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 104, 255, 0.8);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
} */

/* .video_box_image:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0;
    transition: all 0.4s ease;
}
*/
/* .video_box:hover .video_box_image:before, 
.video_box:hover .video_box_image:after {
    opacity: 1;
}  */

/* Footer Link Effects */
.footer_nav ul li a {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer_nav ul li a:before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer_nav ul li a:hover {
    padding-left: 20px;
    color: #0068FF;
}

.footer_nav ul li a:hover:before {
    left: 0;
    opacity: 1;
}

/* Global Focus State for Accessibility */
a:focus, button:focus {
    outline: 2px solid #0068FF;
    outline-offset: 2px;
}

/* Enhanced Container Position */
.container, .container-fluid {
    position: relative;
}

/* Header Enhancement */
header {
    transition: background 0.3s ease;
}

header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 100%);
    z-index: -1;
}

/* Logo Hover Effect */
.logo img {
    transition: all 0.4s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 8px rgba(68, 15, 222, 0.6));
}

.footer_left p a {
    color: #fff;
    font-size: inherit;
}


        /* Your existing CSS is already included in the site, so I'm only adding FAQ-specific styles */
        .faq_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
        }
        
        .faq_box {
            background: var(--light-grey);
            border-radius: 12px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        .faq_box * {
    color: #fff;
}
        .faq_box:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(68, 15, 222, 0.25);
        }
        
        .faq_box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            background: linear-gradient(180deg, #440FDE 0%, #600665 100%);
            opacity: 0;
            transition: opacity 0.7s ease;
            z-index: 1;
        }
        
        .faq_box:hover:before {
            opacity: 0.05;
        }
        
        .faq_box h3 {
            /*font-size: 24px;*/
            /*line-height: 34px;*/
            /*margin-bottom: 16px;*/
            z-index: 2;
            position: relative;
        }
        .faq_table * {
    font-size: 13px;
}
        .faq_box p, .faq_box ul {
            z-index: 2;
            position: relative;
        }
        
        .faq_box ul {
            margin-left: 20px;
        }
        
        .faq_box ul li {
            list-style: disc;
            color: #fff;
            margin-bottom: 8px;
            font-size: 18px;
            line-height: 28px;
        }
        
        .faq_number {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(0, 104, 255, 0.2);
            color: #0068FF;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 50px;
            z-index: 2;
        }
        
        /*.faq_highlight {*/
        /*    background: var(--tg);*/
        /*    -webkit-background-clip: text;*/
        /*    -webkit-text-fill-color: transparent;*/
        /*    font-weight: 600;*/
        /*}*/
        
        .faq_steps {
            counter-reset: step-counter;
            list-style-type: none !important;
            margin-left: 0 !important;
        }
        
        .faq_steps li {
            counter-increment: step-counter;
            list-style-type: none !important;
            position: relative;
            padding-left: 35px;
            margin-bottom: 10px;
        }
        
        .faq_steps li:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 26px;
            height: 26px;
            background: var(--blue);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
        }
        
        .faq_table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .faq_table th, .faq_table td {
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px;
            text-align: left;
        }
        
        .faq_table th {
            background: rgba(0, 104, 255, 0.1);
        }
        
        /* Media queries for responsive design */
        @media (max-width: 991px) {
            .faq_grid {
                grid-template-columns: 1fr;
            }
        }
        .rewards_title_outer h3 {
    position: relative;
    display: inline-block;
    border-bottom: 1px solid;
}
.rewards_title_outer {
    text-align: center;
    margin-bottom: 33px;
}
.hs-form-frame:after {
    width: 100%;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    background: #d3d3d3;
    display: block;
    z-index: 99999999;
}
.hs-form-frame {
    position: relative;
}
.form_container {
    padding-bottom: 0px;
}
.steps_container {
    padding-bottom: 0px;
}
.ssd_grid_image img.mobile , section.hero_banner img.mobile {
    display: none;
}