/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A2540;
    --primary-red: #D62828;
    --primary-yellow: #F7AC06;
    --dark-blue: #1E3A5F;
    --navy: #0A2540;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
    --light-gray: #F5F5F5;
    --gold: #C9A227;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background-color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
        height: 67px;
    width: auto;
    margin-left: 85px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0px;
}

.nav-links {
    display: flex;
    gap: 0px;
    align-items: center;
}

.nav-link {
        color: #1A1F2B;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 17px 20px;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-red);
    transform: scaleX(0);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta-button {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    margin-right:82px;
    border: 2px solid var(--primary-yellow);
}

.nav-cta-button:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ===== CTA BUTTON (Global) ===== */
.cta-button {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 6px 24px;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-yellow);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #1B2A49;
    padding: 30px 195px;
    /* padding-top: 22px; */
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
}

.hero-content {
   display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding-right: 35px;
}

.book-image {
    flex-shrink: 0;
    width: 480px;
}

.book-image img {
        width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    /* max-width: 509px; */}

.hero-text {
        margin-right: 56px;
    flex: 1;
    text-align: right;
    margin-left: -68px;
}

.hero-title {
    margin-bottom: 25px;
}

.critical-alert {
        display: block;
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0px;
    
}

.hero-main-title {
        display: block;
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    font-weight: 700;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.44);
    color: var(--white);
    line-height: 1.05;
    
    padding: 0px;
    margin-top: -22px;
}

.hero-divider {
        width: 100%;
    height: 1px;
    background-color: white;
    margin: 22px 0;
    margin-bottom: 9px;
}

.hero-subtitle {
       font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-left: 73px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 26px;
}

.hero-mobile-cta {
    display: none;
}



/* ===== SECURITY ALERT SECTION ===== */
.security-alert-section {
       background-color: var(--primary-red);
    padding: 70px 70px;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.security-container {
    max-width: 900px;
    margin: 0 auto;
}

.security-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.security-warning {
       font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: -11px;
    color: var(--white);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.security-text {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 25px;
    white-space: nowrap;
    line-height: 1.5;
}

.security-cta {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 5px 22px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid var(--primary-yellow);
}

.security-cta:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

/* ===== WHAT WOULD YOU DO SECTION ===== */
.what-would-section {
    background-color: var(--white);
    margin-top: 8px;
    padding: 70px 40px;
}

.section-container {
        max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.section-container1 {
        max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--navy);
}

.icon-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 45px;
}

.icon-box {
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 3px;
    border-color: black;
    border-radius: 30px 30px 30px 30px;
    padding: 20px 20px 20px 20px;
    background-color: var(--white);
    flex: 1;
    max-width: 255px;
    text-align: center;
    box-shadow: 9px 8px 0px -5px #0A3161;
}
.icon-box1 {
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-width: 3px;
    border-color: #D62828;
    border-radius: 30px 30px 30px 30px;
    padding: 20px 18px 20px 20px;
    background-color: var(--white);
    flex: 1;
    max-width: 350px;
    text-align: center;
    box-shadow: 9px 8px 0px -5px #D62828;
}
.lo{
    font-family: "Poppins", Sans-serif;
    font-weight:700;
    font-size:32px;
    color: #0A3161;
}
.iu{
        font-family: "Poppins", Sans-serif;
    font-weight: 00;
    font-size: 16px;
    color:#000000;
}
.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-yellow);
}

.icon-box h3 {
    
        font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    font-weight: 800;
    
    
    color: var(--primary-red);
}

.icon-box p {
    
        font-family: "Poppins", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    
    color: var(--text-gray);
    line-height: 1.5;
}

.bottom-text-container {
        text-align: center;
    max-width: 840px;
    margin: 0 auto;
}

.bottom-text {
    font-family: "Montserrat", sans-serif;
       
    max-width: 100%;
    
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    
    font-weight: 400;
    color: var(--text-dark);
 
    margin-bottom: 5px;
}

.bottom-text-bold {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-section {
    background-color: #0A3161;

    padding: 50px 40px;
    text-align: center;
}

.trusted-header {
    font-family: "Montserrat", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: white;
    margin-bottom: 0;
}

.trusted-number {
    color: var(--primary-red);
    font-weight: 800;
}

.trusted-title {
    font-family: "Montserrat", Sans-serif;
    font-size: 47px;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: white;
    margin-bottom: 30px;
}

.trusted-cta {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 6px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0px;
    margin-bottom:20px
    border-radius: 4px;
    border: 2px solid var(--primary-yellow);
}

/* ===== FEATURED IN SECTION ===== */
.featured-section {
        display: flex;
    background-color: #2A9D8F;
    padding: 41px 50px;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: white;
    flex-direction: row;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.featured-label {
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.media-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex: 1;
}

.media-logo {
height: 50px;  width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 0.8;
}

/* ===== INTRODUCING SECTION ===== */
.introducing-section {
    background-color: var(--white);
    padding: 70px 40px;
    border-top: 1px solid #E0E0E0;
}

.introducing-title {
        font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--navy);
    width: 103%;
}

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

.introducing-description {
        
    max-width: 97%;
   
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 45px;
    text-align: center;
   
    margin-left: auto;
    margin-right: auto;
}

/* ===== THREE COLUMN SECTION ===== */
.three-columns {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.column-box {
    flex: 1;
    max-width: 350px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-style: solid;
    border-width: 3px;
    border-color: #D62828;
    border-radius: 30px 30px 30px 30px;
    padding: 50px 30px 50px 30px;
    text-align: center;
    background-color: var(--white);
    box-shadow: 9px 8px 0px -5px #D62828;
}

.column-box.featured-box {
    border: 3px solid #D62828;
}

.column-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-svg {
    width: 50px;
    height: 50px;
}

.column-svg.globe-icon {
    fill: var(--primary-yellow);
}

.column-svg.warning-icon {
    fill: var(--primary-yellow);
}

.column-svg.family-icon {
    fill: var(--primary-yellow);
}

.column-box h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.column-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

.get-protected-cta {
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 6px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 2px solid var(--primary-yellow);
}
.boxx{
   
}
.get-protected-cta:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    background-color: var(--white);
    padding: 60px 40px 80px;
    position: relative;
}

.guarantee-divider {
    display: none;
}
.boxx{
        max-width: 1100px;
    margin: 0 auto;
    border: 12px solid var(--primary-red);
    border-radius: 45px;
    padding: 0px 00px 0px;
    text-align: center;
    background-color: var(--white);
}
.guarantee-box {
       max-width: 1166px;
    margin: 0 auto;
    border: 5px solid white;
    border-radius: 0px;
    padding: 60px 132px 70px;
    text-align: center;
    background-color: var(--white);
}

.guarantee-badge {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.guarantee-title-text {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    
    color: #0A3161;
    margin-bottom: -5px;
}

.guarantee-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 52px;
    font-weight: 700;
    
    color: #0A3161;
    margin-bottom: 25px;
    text-decoration: underline;
    text-decoration-color: #0A3161;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.guarantee-text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: white;
    padding: 0 40px 60px;
    position: relative;
}

.testimonials-divider {
    width: 100%;
    max-width: 900px;
    height: 4px;
    background-color: var(--navy);
    margin: 0 auto 40px;
}

.testimonials-title {
    
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #0A3161;
    

        font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    text-shadow: 0px 0px 95px rgba(0, 0, 0, 0.62);
}

.testimonials-title em {
        font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    text-shadow: 0px 0px 95px rgba(0, 0, 0, 0.62);
    color: #0A3161;
}

.testimonial-carousel-wrapper {
    max-width: 1080px;
    margin: 0 auto 35px;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.testimonial-carousel:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--white);
    
    padding: 35px 40px;
    box-sizing: border-box;
        border-style:solid;
    border-width: 4px 4px 4px 4px;
    border-radius: 40px;
    border-color: #F7A706;
}

.testimonial-name {
    font-family: "Poppins", sans-serif;
    
    font-weight: 700;
    color: #1c2022;
    
    font-size: 24px;
    font-weight: 700;
}

.stars {
    color: #F7AC06;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.testimonial-event {
    font-family: "Montserrat", sans-serif;
    
    margin-bottom: 20px;    color: #697882;
  
    font-size: 12.5px;
    font-weight: 500;
}

.testimonial-text {
        font-family: "Poppins", Sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 32px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 7px;
    height: 6px;
    border-radius: 50%;
    background-color: #D0D0D0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--navy);
}

/* ===== TIMER SECTION ===== */
.timer-section {
    background-color: var(--primary-red);
    padding: 70px 40px;
    text-align: center;
}

.timer-title {
    font-family: "Montserrat", Sans-serif;
    font-size: 29px;
    font-weight: 400;
    
    color: var(--white);
    margin-bottom: -16px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.timer-title em {
    font-weight:bolder;
}

.timer-subtitle {
    font-family: "Montserrat", Sans-serif;
    font-size: 29px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

.timer-display {
        background-color: var(--white);
    padding: 31px 27px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    margin-top: -14px;
}

.timer-number {
    font-family: "Montserrat", Sans-serif;
    font-size: 66px;
    font-weight: 700;
    line-height: 1;
    color: #D62828;
}

.timer-label {
    font-family: "Montserrat", Sans-serif;
    font-size: 39px;
    font-weight: 800;
    color: #D62828;
    text-transform: uppercase;
}

.timer-cta {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--white);
    padding: 6px 24px;
    font-family: "Montserrat", sans-serif;
   
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-yellow);
        font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 800;
    
}

.timer-cta:hover {
    background-color: transparent;
    color: var(--primary-yellow);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--white);
    padding: 60px 40px 70px;
}

.faq-title {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy);
}

.faq-title em {
   
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-top: 1px solid #d5d8dc;
    border-left: 1px solid #d5d8dc;
    border-right: 1px solid #d5d8dc;
    border-bottom: none;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: 1px solid #d5d8dc;
}

.faq-question {
       padding: 5px 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: all 0.3s ease;
    gap: 15px;
    width: 100%;
}

.faq-question:hover {
    background-color: var(--white);
}

.faq-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1F2124
    flex: 1;
    line-height: 1.5;
}

.faq-item.active .faq-text {
    color: #F7Ac06
}

.faq-icon {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: black;
    transition: color 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    width: 28px;
    text-align: center;
}

.faq-item.active .faq-icon {
    color: var(--primary-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
        max-height: 500px;
    padding: 10px 25px 14px;
    border-top: 1px solid #d5d8dc;
}

.faq-answer p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===== REFERENCES SECTION ===== */
.references-section {
    background-color: var(--white);
    padding: 0 40px 60px;
}

.references-divider {
    width: 100%;
    max-width: 1000px;
    height: 3px;
    background-color: var(--navy);
    margin: 0 auto 50px;
}

.references-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 35px;
    text-align: center;
}

.references-content {
    max-width: 1100px;
    margin: 0 auto;
}

.references-columns {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.references-list {
    flex: 1;
    padding-left: 20px;
    margin: 0;
    font-family: "Poppins", Sans-serif;
    font-size: 10px;
    color: var(--text-dark);
    line-height: 15px;
}

.references-list li {
    margin-bottom: 0px;
}

.ref-link-bold {
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.ref-link-bold:hover {
    text-decoration: underline;
}

.ref-link {
    color: #1A1F2B;
    text-decoration: none;
}

.ref-link:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
        background-color: #0A3161;
    padding: 4px 57px 1px;
    color: var(--white);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-mobile-toggle {
    display: none;
}

.footer-links {
        display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 22px;
    margin-top: 15px;
}

.footer-link {
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ;
    transition-timing-function: cubic-bezier(.58,.3,.005,1);
    position: relative;
    padding-bottom: 3px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-disclaimer {
        text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1139px;
    margin-left: auto;
    margin-right: auto;

    
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-support {
    margin-top: 20px;
}

.footer-here-link {
    color: var(--primary-yellow);
    font-weight: 900;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-here-link:hover {
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 15px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    color: #9c9c9c;
    font-weight: 600;
}

/* ===== SECURE ORDER SECTION ===== */
.secure-order-section {
    background-color: #F5F5F5;
    padding: 10px 40px;
    text-align: center;
   
}

.secure-order-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ds24b-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.ds24b-badge > span {
    display: flex;
    align-items: center;
}

.ds24b-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.ds24b-logo {
    height: 20px;
    width: auto;
}

.ds24b-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 2px solid #CCCCCC;
    padding-left: 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #F7aC06;
    letter-spacing: 0.5px;
}

.ds24b-lock {
    height: 17px;
    width: auto;
}

.digistore-copyright {
    
    font-size: 10px;
    color: #333;
    line-height: 1.6;    
    font-family: Open Sans, Arial, sans-serif !important;
    position: relative;
    transition: height 200ms;
}

.digistore-link {
     color: #F7AC06;
    /* text-decoration: none; */
    /* transition: opacity 0.3s ease; */
    font-weight: 700;
}

.digistore-link:hover {
    opacity: 0.7;
}

/* ===== DIGISTORE FOOTER ===== */
.digistore-footer {
    background: #fff;
    padding: 20px;
    text-align: center;
}

.digistore-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.digistore-logo img {
    height: 30px;
}

.digistore-logo .separator {
    display: block;
    width: 1px;
    height: 28px;
    background-color: #ccc;
}

.secure-order {
    display: flex;
    align-items: center;
    color: #c36;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    cursor: pointer;
}

.secure-order .lock-icon {
    width: 22px;
    height: 22px;
    margin-top: -7px;
}

.digistore-text {
    color: #555;
    font-size: 12px;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto 10px;
    padding: 1px;
    text-align: center;
}

.digistore-text:last-child {
    margin-bottom: 0;
}

.digistore-text a {
    color: #c36;
    text-decoration: none;
}

.digistore-text-desktop {
    display: block;
}

.copyright {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 0px;
    }

    .book-image {
        width: 320px;
    }

    .critical-alert,
    .hero-main-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .book-image {
        width: 280px;
        margin: 0 auto;
    }

    .hero-text {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .critical-alert,
    .hero-main-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-left: 0;
    }

    .three-columns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .column-box {
        max-width: 280px;
        width: calc(50% - 10px);
        padding: 22px 15px 18px;
    }

    .icon-grid {
        flex-wrap: wrap;
    }

    .icon-box {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    /* ===== GLOBAL MOBILE FIXES ===== */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .iu{
font-size:18px;
line-height:1.5;
    }

    /* ===== NAVBAR MOBILE ===== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Add padding to body to compensate for fixed navbar */
    body {
        padding-top: 75px;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 15px;
        flex-wrap: wrap;
    }

    .logo-img {
        height: 50px;
        margin-left: 0;
    }

    .nav-right {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: height 0.3s ease;
        box-shadow: none;
        align-items: flex-start;
        z-index: 999;
        order: 3;
        flex-basis: 100%;
    }

    .nav-right.active {
        height: auto;
        padding: 10px 0 15px;
        border-top: 1px solid #e0e0e0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding-left: 15px;
    }

    .nav-link {
        font-size: 16px;
        text-align: left;
        padding: 12px 0;
        display: block;
    }

    .nav-cta-button {
        display: none;
    }

    /* ===== HERO SECTION MOBILE ===== */
    .hero-section {
        padding: 50px 20px 60px;
        overflow-x: hidden;
        min-height: 729px;
    }

    .hero-container {
        max-width: 430px;
        margin: 0 auto;
        padding: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
        padding-left: 0;
    }

    .book-image {
        width: 400.4px;
        max-width: 400.4px;
        margin: 0 auto 40px;
        order: 1;
    }

    .book-image img {
        width: 400.4px;
        height: 396.85px;
        object-fit: contain;
    }

    .hero-text {
            order: 2;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0px 22px 30px;
    }

    .hero-title {
        margin-bottom: 0;
    }

    .critical-alert {
        font-size: 33px;
        margin-bottom: -5px;
        margin-top:-26px;
        font-weight: 700;
    }

    .hero-main-title {
        font-size: 33px;
        margin-top: 0;
        line-height: 1.1;
        font-weight: 700;
    }

    .hero-divider {
        display: block;
        width: 67%;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 25px auto;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-left: 0;
        margin-top: 0;
        line-height: 1.5;
        font-weight: 400;
        padding: 0 10px;
    }

    .hero-mobile-cta {
        display: block;
        width: 100%;
        max-width: 360px;
        margin: 30px auto 0;
        padding: 18px 30px;
        font-size: 18px;
        font-weight: 800;
        border-radius: 8px;
        line-height: 1.3;
    }

    /* ===== SECURITY ALERT SECTION MOBILE ===== */
    .security-alert-section {
        padding: 50px 25px;
        border-style: solid;
        border-width: 5px;
        border-color: white;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    }

    .security-container {
        max-width: 100%;
    }

    .security-warning {
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 0;
    }

    .security-text {
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        font-weight: 700;
        white-space: normal;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .security-cta {
        display: block;
        width: 100%;
        max-width: 352px;
        margin: 0 auto;
        padding: 14px 25px;
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        font-weight: 800;
        border-radius: 8px;
    }

    /* ===== WHAT WOULD YOU DO SECTION MOBILE ===== */
    .what-would-section {
        padding: 50px 59px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .icon-grid {
        flex-direction: column;
        gap: 18px;
        align-items:center;
    }

    .icon-box {
            max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
    padding: 53px 17px;
    border-radius: 29px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .icon-svg {
           width: 50px;
    height: 50px;
    }

    .icon-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .icon-box p {
            font-size: 18px;
    line-height: 1.5;
    color: black;
    }

    .bottom-text-container {
        margin-top: 30px;
    }

    .bottom-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .bottom-text-bold {
        font-size: 16px;
    }

    /* ===== TRUSTED BY SECTION MOBILE ===== */
    .trusted-section {
        padding: 40px 20px;
    }

    .trusted-header {
        font-size: 22px;
        line-height: 1.3;
    }

    .trusted-number {
        display: block;
    }

    .trusted-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .trusted-cta {
            display: block;
    width: 100%;
    max-width: 359px;
    margin: 0 auto;
    padding: 3px 20px;
    font-size: 14px;
    }

    /* ===== FEATURED SECTION MOBILE ===== */
    .featured-section {
        padding: 25px 20px;
        flex-direction: column;
    }

    .featured-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .featured-label {
        font-size: 12px;
        text-align: center;
    }

    .media-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 25px;
    }

    .media-logo {
        height: 50px;
        max-width: 100px;
    }

    /* ===== INTRODUCING SECTION MOBILE ===== */
    .introducing-section {
        padding: 50px 25px;
    }

    .introducing-title {
        font-size: 24px;
        width: 100%;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .introducing-description {
        font-size: 15px;
        max-width: 100%;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .icon-box1 {
        max-width: 76%;
        width: 100%;
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .lo {
        font-size: 22px;
    }

    .iu {
        font-size: 18px;
        line-height: 1.5;
    }

    .three-columns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .column-box {
        max-width: 100%;
        width: 100%;
        padding: 30px 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .column-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .column-box p {
        font-size: 14px;
        line-height: 1.5;
    }

    .column-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .column-svg {
        width: 40px;
        height: 40px;
    }

    .get-protected-cta {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 14px;
    }

    .cta-center {
        width: 100%;
        margin-top: 25px;
    }

    /* ===== GUARANTEE SECTION MOBILE ===== */
    .guarantee-section {
        padding: 20px 25px 40px;
    }

    .testimonials-divider {
        max-width: 90%;
        height: 3px;
        margin-bottom: 25px;
    }

    .boxx {
        border-width: 8px;
        border-radius: 30px;
    }

    .guarantee-box {
            padding: 30px 20px;
    border-width: 0;
    
    }

    .guarantee-badge {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .guarantee-title-text {
        font-size: 18px;
        margin-bottom: 0;
    }

    .guarantee-subtitle {
        font-size: 37px;
        margin-bottom: 20px;
    }

    .guarantee-text {
          font-size: 16px;
    line-height: 1.6;
    padding: 9px 20px;
    }

    /* ===== TESTIMONIALS SECTION MOBILE ===== */
    .testimonials-section {
        padding: 0 25px 40px;
    }

    .testimonials-title {
            font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    }

    .testimonial-carousel-wrapper {
           margin-bottom: 25px;
    max-width: 342px;
    }

    .testimonial-card {
            padding: 25px 20px;
    border-radius: 30px;
    border-width: 4px;
    }

    .testimonial-name {
        font-size: 16px;
        margin-bottom: -6px;
    }

    .stars {
        font-size: 27px;
        letter-spacing: 2px;
        margin-bottom: -6px;
    }

    .testimonial-event {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .testimonial-text {
            font-size: 19px;
    line-height: 1.6;
    }

    .testimonial-dots {
        gap: 8px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    /* ===== TIMER SECTION MOBILE ===== */
    .timer-section {
        padding: 40px 20px;
    }

    .timer-title {
            font-size: 22px;
    margin-bottom: 5px;
    line-height: 1;
    }

    .timer-subtitle {
            font-size: 22px;
    margin-bottom: 25px;
    padding: 0px 17px;
    line-height: 1;}

    .timer-display {
            padding: 24px 35px;
    gap: 10px;
    border-radius: 15px;
    flex-direction: row;
    margin-bottom: 20px;
    margin-top: 0;
    max-width: 297px;
    }

    .timer-number {
        font-size: 40px;
    }

    .timer-label {
        font-size: 16px;
    }

    .timer-cta {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 14px;
    }

    /* ===== FAQ SECTION MOBILE ===== */
    .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-text {
        font-size: 16px;
    }

    .faq-icon {
        font-size: 24px;
        width: 24px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 15px 20px;
    }

    .faq-answer p {
           font-size: 20px;
    line-height: 1.6;
    font-color: #0A3161;
    }

    /* ===== REFERENCES SECTION MOBILE ===== */
    .references-section {
            padding: 0 50px 40px;
    }

    .references-divider {
        height: 3px;
        margin-bottom: 30px;
        max-width: 90%;
    }

    .references-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .references-columns {
        flex-direction: column;
        gap: 0;
    }

    .references-list {
        font-size: 10px;
        line-height: 15px;
        padding-left: 15px;
    }

    .references-list li {
        margin-bottom: 12px;
    }

    /* ===== FOOTER MOBILE ===== */
    .footer {
        padding: 0;
        background-color: var(--navy);
    }

    .footer-mobile-toggle {
        display: flex;
        justify-content: center;
        padding: 20px;
        background-color: #0A3161;
    }

    .footer-toggle-icon {
            display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: white;
    color: #f7ac06;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    }

    .footer-links {
        display: none;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        margin-top: 0;
        background-color: var(--white);
        padding: 0;
    }

    .footer-links.active {
        display: flex;
    }

    .footer-link {
            color: var(--navy);
    background-color: #;
    font-size: 13px;
    font-weight: 700;
    padding: 15px 20px;
    /* border-bottom: 1px solid #E0E0E0; */
    text-align: left;
    /* margin-left: 71px; */
    }

    .footer-link:last-child {
        border-bottom: none;
    }

    .footer-link::after {
        display: none;
    }

    .footer-disclaimer {
        display: block;
        padding: 20px;
        font-size: 10px;
        line-height: 1.5;
        background-color: #0A3161;
    }

    .footer-disclaimer p {
        margin-bottom: 10px;
    }

    .footer-support {
        margin-top: 15px;
    }

    .footer-copyright {
        margin-top: 10px;
    }

    .secure-order-section {
        display: none;
    }

    /* ===== DIGISTORE FOOTER MOBILE ===== */
    .digistore-footer {
        padding: 10px 10px;
    }

    .digistore-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        max-width: 100%;
        margin-bottom: 15px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .digistore-logo img {
        height: 22px;
    }

    .digistore-logo .separator {
        display: block;
        width: 1px;
        height: 22px;
        background-color: #ccc;
    }

    .secure-order {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #c36;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .secure-order .lock-icon {
        width: 19px;
        height: 19px;
    }

    .digistore-text {
        font-size: 11px;
        line-height: 1.6;
        color: #555;
        padding: 0 10px;
        max-width: 100%;
    }

    .digistore-text a {
        color: #c36;
        text-decoration: none;
        font-weight: 400;
    }

    /* ===== REMOVE ALL ITALIC TEXT IN MOBILE ===== */
    em, i, .timer-title em, .testimonials-title em, .faq-title em {
        font-style: normal;
    }
}

@media screen and (max-width: 480px) {
    /* ===== NAVBAR 480px ===== */
    .logo-img {
        height: 45px;
    }

    /* ===== HERO 480px ===== */
    .hero-section {
        padding: 0px 0px 0px;
        min-height: auto;
    }

    .hero-container {
        max-width: 100%;
    }

    .book-image {
        
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .book-image img {
        width: 500px;
        
    margin-top: -11px;

    }

    .critical-alert {
        font-size: 33px;
    }

    .hero-main-title {
        font-size: 33px;
    }

    .hero-subtitle {
            font-size: 13px;
    padding: 1px 31px;
    font-weight: 500;
    }

    .hero-divider {
        margin: 20px auto;
    }

    .hero-mobile-cta {
        max-width: 100%;
        padding: 16px 25px;
        font-size: 16px;
        margin-top: 25px;
    }

    /* ===== SECTIONS 480px ===== */
    .section-title {
            font-size: 26px;
    padding: -1px 35px;
    font-color: #0A3161;
    
    }

    .cta-button {
           padding: 6px 15px;
    font-size: 20px;
    }

    .security-text {
           font-family: "Montserrat", Sans-serif;
    font-size: 21px;
    font-weight: 400;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: white;

    /* ===== TRUSTED 480px ===== */
    .trusted-header {
        font-size: 20px;
    }

    .trusted-title {
        font-size: 20px;
    }

    /* ===== FEATURED 480px ===== */
    .media-logo {
        height: 30px;
        max-width: 80px;
    }

    /* ===== INTRODUCING 480px ===== */
    .introducing-title {
        font-size: 22px;
    }

    .introducing-description {
        font-size: 14px;
    }

    /* ===== GUARANTEE 480px ===== */
    .guarantee-title-text {
        font-size: 16px;
    }

    .guarantee-subtitle {
        font-size: 24px;
    }

    .guarantee-badge {
        width: 110px;
        height: 110px;
    }

    .guarantee-text {
        font-size: 13px;
    }

    /* ===== TESTIMONIALS 480px ===== */
    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .stars {
        font-size: 16px;
    }

    .testimonial-event {
        font-size: 11px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }

    /* ===== TIMER 480px ===== */
    .timer-title {
        font-size: 14px;
    }

    .timer-subtitle {
        font-size: 14px;
    }

    .timer-number {
        font-size: 36px;
    }

    .timer-display {
        padding: 18px 25px;
        gap: 8px;
        border-radius: 12px;
    }

    .timer-label {
        font-size: 16px;
    }

    /* ===== FAQ 480px ===== */
    .faq-title {
        font-size: 22px;
    }

    .faq-text {
        font-size: 13px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* ===== REFERENCES 480px ===== */
    .references-title {
        font-size: 24px;
    }

    .references-list {
        font-size: 10px;
        line-height: 15px;
    }

    /* ===== FOOTER 480px ===== */
    .footer-disclaimer {
        font-size: 9px;
        padding: 15px;
    }
    .icon-box1{
            max-width: 100%;
    width: 100%;
    flex: 1 1 100%;
    padding: 53px 17px;
    border-radius: 29px;
    }
    
    .lo{
font-size:22px;
    }
}

/* ============================================
   DIGISTORE24 POPUP MODAL
   ============================================ */
.ds24-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
}

.ds24-popup-overlay.active {
    display: flex;
}

.ds24-popup {
    max-width: 558px;
    margin: 0 auto;
    border: 1px solid #ccc;
    color: #2f485c;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    top: 30px;
    position: relative;
    background-color: #fff;
    animation: popupFadeIn 0.2s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ds24-popup-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.ds24-popup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ds24-popup-logo-img {
    height: 22px;
    width: auto;
}

.ds24-popup-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a3a6e;
    letter-spacing: -0.5px;
}

.ds24-popup-divider {
    width: 1px;
    height: 24px;
    background-color: #cccccc;
    margin: 0 16px;
}

.ds24-popup-secure {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds24-popup-lock {
    font-size: 16px;
    color: #f5a623;
}

.ds24-popup-secure-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0.5px;
}

.ds24-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #cc3366;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    transition: opacity 0.2s;
}

.ds24-popup-close:hover {
    opacity: 0.7;
}

.ds24-popup-body {
    padding: 15px;
    font-size: 12px;
    line-height: 1.5em;
}

.ds24-popup-title {
    font-family: Open Sans, Arial, sans-serif !important;
    font-size: 14px;
    margin: 0 0 17px 0;
    line-height: 1.4;
}

.ds24-popup-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.ds24-popup-logo a,
.ds24-popup-secure a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ds24-popup-title a,
.ds24-popup-text a {
    color: #1a3a6e;
    text-decoration: none;
    font-weight: 600;
}

.ds24-popup-title a:hover,
.ds24-popup-text a:hover {
    text-decoration: underline;
}

/* Popup Mobile Responsive */
@media (max-width: 480px) {
    .ds24-popup {
        width: 95%;
        margin: 10px;
    }

    .ds24-popup-header {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .ds24-popup-brand {
        font-size: 16px;
    }

    .ds24-popup-secure-text {
        font-size: 12px;
    }

    .ds24-popup-close {
        top: 10px;
        right: 12px;
        font-size: 24px;
    }

    .ds24-popup-body {
        padding: 16px 18px 24px;
    }

    .ds24-popup-title {
        font-size: 14px;
    }

    .ds24-popup-text {
        font-size: 13px;
    }
}
