:root{--accent:#0b5cff;--muted:#6b7280;--bg:#f7f9fc;--card:#fff;--maxw:1200px;--radius:12px;font-family:Inter,ui-sans-serif,system-ui,-apple-system,'Segoe UI',Roboto,Arial}
*{box-sizing:border-box}body{margin:0;background:var(--bg);color:#071128;line-height:1.5}img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:28px}
.site-header{background:rgba(255,255,255,0.8);backdrop-filter:blur(6px);position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(15,23,42,0.03)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:16px}
.brand{display:flex;gap:12px;align-items:center;text-decoration:none;color:inherit}
.brand img{height:44px}
.brand-text .sub{display:block;color:var(--muted);font-size:13px}
.brand-text strong{display:block;font-size:16px}
.main-nav ul{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.main-nav a{text-decoration:none;color:inherit;font-weight:600}
.nav-actions{display:flex;gap:10px;align-items:center}
.btn-primary{background:var(--accent);color:#fff;padding:9px 14px;border-radius:10px;text-decoration:none;border:0}
.btn-outline{border:1px solid #e6e9ef;padding:8px 12px;border-radius:10px;text-decoration:none;color:var(--muted);background:white}
.btn-ghost{background:transparent;border:1px solid #e6e9ef;padding:9px 12px;border-radius:10px}
.hero{display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:center;padding:36px 0}
.pill{background:#eef2ff;padding:6px 10px;border-radius:999px;display:inline-block;font-weight:600}
.lead{color:var(--muted);font-size:16px}
.cta-row{margin-top:16px;display:flex;gap:12px}
.stats{margin-top:18px;display:flex;gap:12px}
.stat{background:#fff;padding:10px;border-radius:10px;min-width:140px;text-align:center;box-shadow:0 8px 24px rgba(12,18,28,0.04)}
.card{background:var(--card);padding:18px;border-radius:var(--radius);box-shadow:0 8px 24px rgba(12,18,28,0.04)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid-2{display:grid;grid-template-columns:1fr 360px;gap:16px}
.testimonials{padding:28px 0}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.testimonial-card{background:linear-gradient(180deg, rgba(11,92,255,0.03), rgba(255,255,255,0.02));padding:18px;border-radius:14px;display:flex;flex-direction:column;gap:12px}
.testimonial-img{width:64px;height:64px;border-radius:999px;object-fit:cover}
.testimonial-msg{margin:0;color:#0f172a;font-size:15px}
.client-name{color:var(--muted);font-weight:700;margin-top:4px}
.site-footer{border-top:1px solid #eef2f5;padding:28px 0;margin-top:32px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr auto;gap:12px;align-items:center}
.footer-links{display:flex;gap:12px}
.muted{color:var(--muted)}
@media (max-width:980px){.grid-3{grid-template-columns:1fr}.hero{grid-template-columns:1fr}.main-nav ul{display:none}}
@media (max-width:720px){.testimonials-grid{grid-template-columns:1fr}.grid-2{grid-template-columns:1fr}.hero-right{order:2}}
/* ================== TESTIMONIAL SLIDER ================== */
.testimonial-slider {
    background: #0a0f23;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

.testimonial-slider .section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #E77D22;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.testimonial-slider-wrapper {
    display: flex;
    overflow-x: auto;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    background: #11182f;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
    scroll-snap-align: start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    opacity: 0.95;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 195, 255, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonial-info {
    text-align: left;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}

.client-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.verified-badge img {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* Scrollbar for horizontal slider */
.testimonial-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-slider-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1000px) {
    .testimonial-slider-wrapper {
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .testimonial-card {
        width: 100%;
    }
}

.site-footer {
    border-top: 1px solid #eef2f5;
    padding: 28px 0;
    margin-top: 32px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center
}

.footer-links {
    display: flex;
    gap: 12px
}

.muted {
    color: var(--muted)
}

@media (max-width:980px) {
    .grid-3 {
        grid-template-columns: 1fr
    }

    .hero {
        grid-template-columns: 1fr
    }

    .main-nav ul {
        display: none
    }
}

@media (max-width:720px) {
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .hero-right {
        order: 2
    }
}

/* ===================== PRODUCT CATEGORIES ===================== */
.product-categories {
    background: #0a0f23;
    padding: 100px 20px;
    color: #fff;
    width: 100%;
}

.product-categories .container {
    width: 100%;
    margin: 10px;
}

.section-heading {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 70px;
    color: #E77D22;
}

.product-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* --- CARD --- */
.product-card {
    background: #11182f;
    border-radius: 18px;
    padding: 50px 35px;
    text-align: left;
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 380px;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* --- ICON AREA --- */
.product-icon-wrap {
    margin-bottom: 30px;
}

.product-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #E77D22, #006eff);
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.35);
}

/* --- TEXT AREA --- */
.product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-text {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* --- LEARN MORE LINK --- */
.product-link {
    color: #E77D22;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.product-link span {
    transition: 0.3s ease;
}

.product-link:hover span {
    margin-left: 8px;
}

@media (max-width: 900px) {
    .product-card-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}



/* Globe canvas */
#globeCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* ================== CRYPTO STATS BOXES ================== */
.crypto-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stats-card {
    background: linear-gradient(135deg, #E77D22, #006eff);
    padding: 25px 35px;
    border-radius: 12px;
    min-width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 195, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 195, 255, 0.6);
}

.stats-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.stats-card p {
    font-size: 14px;
    color: #e0f7ff;
    opacity: 0.9;
}

/* ================== WHY CHOOSE US / FEATURES ================== */
.features-section {
    background: #0a0f23;
    color: #fff;
    padding: 100px 20px;
}

.features-section .container {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.features-section .section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #E77D22;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.features-section .section-subheading {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #11182f;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: linear-gradient(135deg, #E77D22, #006eff);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 195, 255, 0.35);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== PRICING / INVESTMENT PLANS ================== */
.pricing-section {
    background: #0a0f23;
    color: #fff;
    padding: 100px 20px;
}

.pricing-section .container {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.pricing-section .section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #E77D22;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.pricing-section .section-subheading {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- PRICING CARD --- */
.pricing-card {
    background: #11182f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* --- HEADER --- */
.pricing-header {
    padding: 20px;
    text-align: center;
}

.pricing-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* --- BODY --- */
.pricing-body {
    padding: 30px 20px 40px 20px;
    text-align: center;
}

.pricing-body .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-features li {
    font-size: 14px;
    opacity: 0.85;
    margin: 10px 0;
}

/* BUTTON */
.pricing-body .btn-primary {
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background: #E77D22;
    color: #fff;
    transition: 0.3s ease;
}

.pricing-body .btn-primary:hover {
    background: #0090c3;
}

/* Responsive */
@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== CRYPTO PERFORMANCE / TICKERS ================== */
.crypto-performance {
    background: #0a0f23;
    color: #fff;
    padding: 100px 20px;
}

.crypto-performance .container {
    max-width: 100%;
    margin: auto;
    text-align: center;
}

.crypto-performance .section-heading {
    font-size: 14px;
    font-weight: 700;
    color: #E77D22;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.crypto-performance .section-subheading {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 50px;
}

/* --- TICKER --- */
.crypto-ticker {
    display: flex;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 50px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-ticker::-webkit-scrollbar {
    display: none;
}

.ticker-item {
    flex: 0 0 auto;
    background: #11182f;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #E77D22;
    white-space: nowrap;
}

/* --- CHART CARDS --- */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chart-card {
    background: #11182f;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.chart-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 195, 255, 0.45);
}

.chart-card p {
    margin-top: 15px;
    font-weight: 600;
    font-size: 15px;
    color: #E77D22;
}

/* Responsive */
@media (max-width: 1000px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== FOOTER ================== */
.footer-section {
    background: #0a0f23;
    color: #fff;
    padding: 80px 20px 40px 20px;
    font-size: 14px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-section a:hover {
    color: #0090c3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E77D22;
}

.footer-col p,
.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ================== CTA / UNLOCK YOUR INVESTMENT POTENTIAL ================== */
.cta-unlock {
    background: linear-gradient(135deg, #0a0f23, #11182f);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.cta-unlock h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-unlock p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-unlock .cta-buttons a {
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s ease;
}

.cta-unlock .btn-primary {
    background: #E77D22;
    color: #fff;
}

.cta-unlock .btn-primary:hover {
    background: #0090c3;
}

.cta-unlock .btn-secondary {
    background: transparent;
    border: 2px solid #E77D22;
    color: #E77D22;
}

.cta-unlock .btn-secondary:hover {
    background: #E77D22;
    color: #fff;
}

/* ================== HEADER ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    z-index: 1000;
    transition: 0.3s;
}

.header-container {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo a {
    font-size: 24px;
    font-weight: 700;
    color: #E77D22;
    text-decoration: none;
}

.header .nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header .nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.header .nav ul li a:hover {
    color: #E77D22;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f23 0%, #0e1a38 100%);
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-bg {
   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
*/
.hero-content {
   
    z-index: 2;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.85;
}


.btn-primary {
    background: #E77D22;
    color: #fff;
}

.btn-primary:hover {
    background: #0090c3;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #E77D22;
    color: #E77D22;
}

.btn-secondary:hover {
    background: #E77D22;
    color: #fff;
}

/* Crypto Stats Boxes (floating below buttons) */
.crypto-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stats-card {
    background: linear-gradient(135deg, #E77D22, #006eff);
    padding: 25px 35px;
    border-radius: 12px;

    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 195, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 195, 255, 0.6);
}

.stats-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.stats-card p {
    font-size: 14px;
    color: #e0f7ff;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1000px) {
    .crypto-stats {
        flex-wrap: wrap;
        width: 100%;
    }

    .header .nav ul {
        display: none;
        /* Replace with mobile toggle if needed */
    }
}

/* ================== DISCLAIMER SECTION ================== */
.disclaimer-section {
    background: #f8f8f8;
    /* Light background color */
    padding: 30px 20px;
    font-size: 14px;
    text-align: center;
    color: #333;
    border-top: 1px solid #ddd;
    /* Subtle top border */
    margin-top: 30px;
}

.disclaimer-text {
    margin-bottom: 15px;
    opacity: 0.85;
}

.disclaimer-links {
    font-size: 13px;
}

.disclaimer-link {
    color: #00c3ff;
    /* AltCryptoInvest brand color */
    text-decoration: none;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 20px 15px;
    }

    .disclaimer-text {
        font-size: 11px;
    }

    .disclaimer-links {
        font-size: 12px;
    }
}

/* ================== AFTER REGISTRATION PAGE ================== */
.after-register-page {
    padding: 80px 20px;
    text-align: center;
    background: #f8f8f8;
    color: #333;
}

.after-register-page .thank-you-message {
    margin-bottom: 40px;
}

.after-register-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: #00c3ff;
    margin-bottom: 20px;
}

.after-register-page p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* Next Steps */
.next-steps {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
}

.next-steps ul li i {
    margin-right: 10px;
    color: #00c3ff;
}

/* Call-to-Action Buttons */
.cta-buttons {
    margin-top: 40px;
}

.cta-buttons a {
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 15px;
    display: inline-block;
    transition: 0.3s;
}

.cta-buttons .btn-primary {
    background: #00c3ff;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: #0090c3;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #00c3ff;
    color: #00c3ff;
}

.cta-buttons .btn-secondary:hover {
    background: #00c3ff;
    color: #fff;
}

/* Helpful Links */
.helpful-links {
    margin-top: 50px;
    font-size: 16px;
}

.helpful-links p {
    font-weight: 600;
    margin-bottom: 15px;
}

.helpful-links ul {
    list-style: none;
    padding: 0;
}

.helpful-links ul li {
    margin-bottom: 10px;
}

.helpful-links .helpful-link {
    text-decoration: none;
    color: #00c3ff;
    transition: 0.3s;
}

.helpful-links .helpful-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .after-register-page {
        padding: 60px 20px;
    }

    .cta-buttons a {
        padding: 12px 30px;
        font-size: 14px;
    }

    .helpful-links p {
        font-size: 14px;
    }
}

/* ================== VIDEO MODAL ================== */
.video-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 50px;
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 12px;
}

.video-modal iframe {
    width: 100%;
    height: 450px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff0000;
}