:root {
    --primary-red: #E50914;
    --primary-red-hover: #b20710;
    --bg-black: #050505;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-white: #FFFFFF;
    --text-gray: #B3B3B3;
    --accent-orange: #FF5722;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.highlight-red {
    color: #FF5722;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #FF7A00 0%, #FF5722 100%);
    /* Orange as requested in CTA 1 */
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: transform 0.2s;
    text-align: center;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-large {
    font-size: 1.5rem;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(180deg, #FF7A00 0%, #FF5722 100%);
    /* Orange to match Hero */
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.6);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 87, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
    }
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-container {
    margin-bottom: 40px;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vsl-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #555;
}

.play-button {
    color: var(--primary-red);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.icon-play {
    width: 80px;
    height: 80px;
}

.social-proof-teaser {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    transition: transform 0.2s, border-color 0.2s;
}

.problem-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-red);
}

.problem-card .icon-wrapper {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.problem-card .text-wrapper {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.5;
}

.icon-x {
    width: 28px;
    height: 28px;
}

.transition-text {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 40px;
    color: var(--primary-red);
}

.lead-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Solution Section */
.solution-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.feature-card .icon {
    margin-bottom: 20px;
    color: var(--primary-red);
}

.icon-feature {
    width: 50px;
    height: 50px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-red);
}

/* Included Section */
.included-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.modules-container,
.bonuses-container {
    margin-bottom: 50px;
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.check-list li {
    background: var(--bg-card);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    display: flex;
    align-items: flex-start;
}

.check-list li .icon-check {
    color: #2ecc71;
    /* Green for checks */
    margin-right: 15px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.check-list li span {
    flex: 1;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.bonus-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
}

.bonus-tag {
    background: var(--primary-red);
    color: white;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.bonus-item h4 {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, #1a0000 100%);
    text-align: center;
}

.offer-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.2);
}

.old-price {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.price-display {
    margin: 20px 0;
    color: var(--primary-red);
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.amount {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
}

.payment-type {
    font-size: 1.5rem;
    font-weight: 700;
}

.installments {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.price-summary {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.countdown-timer {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--text-gray);
}

#timer {
    color: var(--primary-red);
    font-weight: bold;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    text-align: center;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 1px dashed #555;
    border-radius: 10px;
}

.guarantee-icon {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.icon-shield {
    width: 64px;
    height: 64px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    color: var(--primary-red);
}

.accordion-header .icon-chevron {
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
}

.accordion-header.active .icon-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-gray);
}

.accordion-content.active {
    padding-bottom: 20px;
}

/* Footer */
.footer-cta {
    padding: 80px 0 40px;
    text-align: center;
    background: #000;
}

.options-list {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    font-size: 1.2rem;
    padding-left: 40px;
    /* Fix for missing left margin/padding due to reset */
}

.options-list li {
    margin-bottom: 15px;
}

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }

    .amount {
        font-size: 4rem;
    }

    .btn-large {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Testimonials Section */
#iuycf-3 {
    background: #0b0e13;
    padding-top: 64px;
    padding-left: 112px;
    padding-right: 112px;
    padding-bottom: 64px;
}

@media (max-width: 480px) {
    #iuycf-3 {
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px;
    }
}

#iyjyn-3 {
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    /* Added for centering */
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    justify-content: space-between;
}

@media (max-width:480px) {
    #iyjyn-3 {
        gap: 24px !important;
    }
}

#isqee-3 {
    height: 100%;
    align-items: center;
    border-width: 1px;
    border-radius: 16px;
    justify-content: center;
}

@media (max-width: 480px) {
    #isqee-3 {
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.comments-container {
    margin: 0 auto;
    padding: 20px;
    max-width: 950px;
    background: #FFFCFC;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .comments-container {
        padding: 15px;
        max-width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .comments-container {
        padding: 12px 8px;
    }
}

.comments-header {
    color: #373737;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .comments-header {
        font-size: 13px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}

.comment {
    gap: 12px;
    display: flex;
    padding: 8px 0;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .comment {
        gap: 10px;
        margin-bottom: 12px;
    }
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .avatar {
        width: 30px;
        height: 30px;
    }
}

.img_depoiments {
    width: 40px;
    border-radius: 200px;
}

@media (max-width: 768px) {
    .img_depoiments {
        width: 36px;
        height: 36px;
    }
}

.comment-content {
    flex: 1;
}

.comment-author {
    color: #365899;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .comment-author {
        font-size: 13px;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .comment-author {
        font-size: 12.5px;
    }
}

.comment-text {
    color: #1E1E1E;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .comment-text {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .comment-text {
        font-size: 12.5px;
    }
}

.comment-actions {
    gap: 8px;
    color: #93979F;
    display: flex;
    font-size: 11.5px;
}

@media (max-width: 768px) {
    .comment-actions {
        gap: 6px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .comment-actions {
        flex-wrap: wrap;
        font-size: 10.5px;
    }
}

/* Fix for oversized text in testimonials */
.comment-text span {
    color: inherit;
    font-size: inherit;
}

.comment-actions span {
    cursor: pointer;
    font-size: inherit;
}

.comment-actions span:hover {
    text-decoration: underline;
}

.comment.reply {
    border-left: 1px solid #DEDEDE;
    margin-left: 50px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .comment.reply {
        margin-left: 30px;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .comment.reply {
        margin-left: 15px;
        padding-left: 8px;
    }
}

#i03x1w9 {
    font-weight: 500;
}

#i03x1w9-2 {
    font-weight: 500;
}

.facebook-plugin {
    gap: 8px;
    display: flex;
    border-top: 1px solid #DEDEDE;
    margin-top: 20px;
    align-items: center;
    padding-top: 15px;
}

@media (max-width: 768px) {
    .facebook-plugin {
        gap: 6px;
        margin-top: 15px;
        padding-top: 12px;
    }
}

.facebook-icon {
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    font-size: 14px;
    background: #3B5988;
    align-items: center;
    font-weight: bold;
    border-radius: 2px;
    justify-content: center;
}

@media (max-width: 768px) {
    .facebook-icon {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
}

.facebook-text {
    color: #545454;
    font-size: 11.5px;
}

@media (max-width: 768px) {
    .facebook-text {
        font-size: 10.5px;
    }
}

#CTA1-2-3 {
    color: #000;
    animation: pulse 1.5s infinite;
    font-size: 20px;
    background: #FFC800;
    border-top: none !important;
    box-shadow: 4px 4px 16px #ffc800;
    margin-top: 40px;
    transition: background-color .3s ease;
    border-left: none !important;
    font-weight: 700;
    line-height: 28px;
    padding-top: 24px;
    border-color: #1dbb2a;
    border-right: none !important;
    border-style: solid;
    padding-left: 24px;
    border-bottom: none !important;
    border-radius: 8px;
    padding-right: 24px;
    padding-bottom: 24px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

/* Expert Presentation Section */
#it058fi {
    color: #fff !important;
    background: #070707;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 480px) {
    #it058fi {
        padding-left: 16px;
        padding-right: 16px;
        background-image: url('https://projects.clickmax.io/c3944038-7e73-4275-946e-55cd991a9665/assets/002e7f18-3ee5-4654-aabc-8924f362db92');
        background-position: left center;
    }
}

#ijhjg9l {
    gap: 32px;
    max-width: 1556px;
    margin-top: 0px;
    padding-top: 40px;
    padding-left: 24px;
    margin-bottom: 0px;
    padding-right: 24px;
    padding-bottom: 40px;
    justify-content: center;
}

@media (max-width: 480px) {
    #ijhjg9l {
        gap: 32px !important;
        margin-top: 0px !important;
        margin-bottom: 0px;
    }
}

#i6n2kvy {
    width: 477px;
    height: 535px;
}

@media (max-width: 480px) {
    #i6n2kvy {
        width: 100%;
        height: auto;
    }
}

#i1fznw1 {
    width: 477px;
    height: 535px;
    border-radius: 16px;
}

@media (max-width: 480px) {
    #i1fznw1 {
        height: auto;
        width: 100%;
    }
}

#it2utzo {
    width: 50%;
    max-width: 800px;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 480px) {
    #it2utzo {
        align-items: center;
    }
}

#i27l8o {
    color: #ffffff;
    font-size: medium;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    #i27l8o {
        font-size: 32px !important;
        margin-top: 24px !important;
        text-align: center;
        line-height: 120%;
    }
}

#iu87hf {
    color: #fff;
    font-size: 40px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 100%;
}

@media (max-width: 480px) {
    #iu87hf {
        font-size: 36px !important;
        line-height: 120%;
    }
}

#itkonr {
    color: #ffffff;
    font-size: 54px !important;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    #itkonr {
        font-size: 32px !important;
        margin-top: 24px !important;
        text-align: center;
        line-height: 120%;
    }
}

#i3sa5u {
    color: #fff;
    font-size: 28px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 100%;
}

@media (max-width: 480px) {
    #i3sa5u {
        font-size: 28px !important;
        line-height: 120%;
    }
}

#ivleoj {
    color: #ffffff;
    font-size: 18px !important;
    margin-top: 4px !important;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    #ivleoj {
        font-size: 24px !important;
        margin-top: 24px !important;
        text-align: center;
        line-height: 120%;
    }
}

#ircfzc {
    color: #fff !important;
    font-size: 20px !important;
    margin-top: 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    #ircfzc {
        color: #ffffffff;
        font-size: 20px !important;
        margin-top: 40px !important;
        text-align: center !important;
        line-height: 100%;
    }
}

span {
    font-size: 18px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

#iglz2ls {
    font-weight: bold;
    color: inherit;
    background-color: inherit;
    font-style: inherit;
    text-decoration: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}

#iusfix6 {
    color: #fff !important;
    font-size: 20px !important;
    margin-top: 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 150%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

@media (max-width: 480px) {
    #iusfix6 {
        color: #ffffffff;
        font-size: 20px !important;
        margin-top: 16px !important;
        text-align: center !important;
        line-height: 100%;
    }
}

/* Layout Fixes for Expert Presentation */
#ijhjg9l {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 480px) {
    #ijhjg9l {
        flex-direction: column;
    }
}

/* Fixes for Expert Section - Step 2 */
@media (max-width: 480px) {
    #it2utzo {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Center text on Desktop and Mobile */
#it2utzo,
#i27l8o,
#itkonr,
#ivleoj,
#ircfzc,
#iusfix6 {
    text-align: center !important;
    align-items: center !important;
}

/* Final Layout Fixes - Step 3 */
#ijhjg9l {
    justify-content: center !important;
}

/* Reset Desktop Text Alignment */
@media (min-width: 481px) {

    #it2utzo,
    #i27l8o,
    #itkonr,
    #ivleoj,
    #ircfzc,
    #iusfix6 {
        text-align: left !important;
        align-items: flex-start !important;
    }
}

/* Fix Headline Red Text Size */
.highlight-red {
    font-size: inherit !important;
}

#iuycf-6-2-2 {
    background: #111;
    padding-top: 64px;
    padding-left: 88px;
    padding-right: 88px;
    padding-bottom: 64px;
}

@media (max-width: 480px) {
    #iuycf-6-2-2 {
        padding-top: 24px;
    }
}

@media (max-width:480px) {
    #iuycf-6-2-2 {
        padding-top: 64px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 64px;
    }
}

#iyjyn-6-2-2 {
    gap: 32px;
    max-width: 1440px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    justify-content: space-between;
}

@media (max-width:480px) {
    #iyjyn-6-2-2 {
        gap: 24px !important;
    }
}

#isqee-6-2-2 {
    height: 100%;
    align-items: center;
    border-width: 1px;
    border-radius: 16px;
    justify-content: center;
}

@media (max-width:480px) {
    #isqee-6-2-2 {
        padding-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
    }
}

#it7n1w9-6-2-2 {
    color: #fff;
    font-size: 36px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 24px;
}

@media (max-width:480px) {
    #it7n1w9-6-2-2 {
        text-align: center;
    }
}

#i820n1-2-2-2-4-2 {
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-2 {
    color: #fff !important;
    font-size: 24px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

#is6u5yi-3-2-2 {
    gap: 24px;
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

@media (max-width: 480px) {
    #is6u5yi-3-2-2 {
        gap: 32px !important;
        flex-direction: column !important;
    }
}

@media (max-width:480px) {
    #is6u5yi-3-2-2 {
        gap: 24px !important;
    }
}

#ipsit4-4-2-2 {
    max-width: 356px !important;
    background: #171717;
    box-shadow: 0px 0px 16px #00000080 inset;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    border-radius: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    transition-duration: .3s;
}

#ipsit4-4-2-2:hover {
    transition: scale .03;
}

#idu9dc-2-2 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    background: #111;
    align-items: center;
    border-radius: 200px;
    margin-bottom: 16px;
    justify-content: center;
}

#i8y7te-2-2 {
    color: #dc2626;
    font-size: 42px;
}

@media (max-width: 480px) {
    #i8y7te-2-2 {
        color: #dc2626 !important;
        font-size: 42px !important;
    }
}

@media (max-width:480px) {
    #i8y7te-2-2 {
        color: #dc2626 !important;
        font-size: 32px !important;
    }
}

#izt26v-4-2-2 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2 {
    color: #fff !important;
    font-size: 24px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#izt26v-4-2-2-5 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2-6 {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#i820n1-4-2-2 {
    align-items: center;
    justify-content: center;
}

#i820n1-2-2-2-4-3-3-5 {
    margin-top: 16px;
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-3-4-5 {
    color: #fff !important;
    font-size: 18px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

#ipsit4-4-2-2-4 {
    max-width: 356px !important;
    background: #171717;
    box-shadow: 0px 0px 16px #00000080 inset;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    border-radius: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    transition-duration: .3s;
}

#ipsit4-4-2-2-4:hover {
    transition: scale .03;
}

#idu9dc-2-2-3 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    background: #111;
    align-items: center;
    border-radius: 200px;
    margin-bottom: 16px;
    justify-content: center;
}

#i8y7te-2-2-3 {
    color: #dc2626;
    font-size: 42px;
}

@media (max-width: 480px) {
    #i8y7te-2-2-3 {
        color: #dc2626 !important;
        font-size: 42px !important;
    }
}

@media (max-width:480px) {
    #i8y7te-2-2-3 {
        color: #dc2626 !important;
        font-size: 32px !important;
    }
}

#izt26v-4-2-2-4 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2-4 {
    color: #fff !important;
    font-size: 24px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#izt26v-4-2-2-5-3 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2-6-3 {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#i820n1-4-2-2-4 {
    align-items: center;
    justify-content: center;
}

#i820n1-2-2-2-4-3-3-5-3 {
    margin-top: 16px;
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-3-4-5-3 {
    color: #fff !important;
    font-size: 18px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

#ipsit4-4-2-2-2 {
    max-width: 356px !important;
    background: #171717;
    box-shadow: 0px 0px 16px #00000080 inset;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    border-radius: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    transition-duration: .3s;
}

#ipsit4-4-2-2-2:hover {
    transition: scale .03;
}

#idu9dc-2-2-2 {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    background: #111;
    align-items: center;
    border-radius: 200px;
    margin-bottom: 16px;
    justify-content: center;
}

#i8y7te-2-2-2 {
    color: #dc2626;
    font-size: 42px;
}

@media (max-width: 480px) {
    #i8y7te-2-2-2 {
        color: #dc2626 !important;
        font-size: 42px !important;
    }
}

@media (max-width:480px) {
    #i8y7te-2-2-2 {
        color: #dc2626 !important;
        font-size: 32px !important;
    }
}

#izt26v-4-2-2-2 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2-2 {
    color: #fff !important;
    font-size: 24px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#izt26v-4-2-2-5-2 {
    align-items: center;
    justify-content: center;
}

#i9c5j7-4-2-2-6-2 {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}

#i820n1-4-2-2-2 {
    align-items: center;
    justify-content: center;
}

#i820n1-2-2-2-4-3-3-5-2 {
    margin-top: 16px;
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-3-4-5-2 {
    color: #fff !important;
    font-size: 18px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

#is6u5yi-4-3-2 {
    gap: 24px;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    #is6u5yi-4-3-2 {
        gap: 24px !important;
    }
}

@media (max-width:480px) {
    #is6u5yi-4-3-2 {
        gap: 24px !important;
    }
}

#ipsit4-2-2-2-2 {
    background: #171717;
    box-shadow: 0 4px 8px #00000029;
    padding-top: 24px;
    padding-left: 24px;
    border-radius: 16px;
    padding-right: 24px;
    padding-bottom: 24px;
    transition-duration: .3s;
}

#ipsit4-2-2-2-2:hover {
    transition: scale .03;
}

#izt26v-2-2-2-2 {
    align-items: flex-start;
    justify-content: flex-start;
}

#i820n1-2-3-2-2 {
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-2-4 {
    color: #fff !important;
    font-size: 24px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    #iythuk-2-4-2-5-2-4 {
        font-weight: 700;
    }
}

#i820n1-2-2-2-4-2-2 {
    align-items: center;
    margin-bottom: 24px;
    justify-content: center;
}

#iythuk-2-4-2-5-2-3 {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

@media (max-width: 480px) {
    #iythuk-2-4-2-5-2-3 {
        font-size: 18px !important;
        line-height: 24px;
    }
}

span {
    font-size: 18px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

#i0pthls {
    color: inherit;
    font-size: inherit;
    font-style: inherit;
    font-family: inherit;
    font-weight: bold;
    line-height: inherit;
    text-decoration: inherit;
    background-color: inherit;
}

@media (max-width: 480px) {
    #i0pthls {
        font-size: 18px !important;
    }
}

#i820n1-2-2-2-4-2-2-2 {
    align-items: center;
    justify-content: center;
}

#iythuk-2-4-2-5-2-3-3 {
    color: #fff !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 500;
    line-height: 28px;
}

@media (max-width: 480px) {
    #iythuk-2-4-2-5-2-3-3 {
        font-size: 18px !important;
        line-height: 24px;
    }
}

#il4p758 {
    color: #dc2626;
    font-size: inherit;
    font-style: inherit;
    font-family: inherit;
    font-weight: bold;
    line-height: inherit;
    text-decoration: inherit;
    background-color: inherit;
}

@media (max-width: 480px) {
    #il4p758 {
        font-size: 18px !important;
    }
}

/* Mobile Layout for Step Cards */
/* Mobile Layout for Step Cards */
@media (max-width: 480px) {

    #ipsit4-4-2-2,
    #ipsit4-4-2-2-4,
    #ipsit4-4-2-2-2 {
        width: auto !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

#CTA1-2-3 {
    text-align: center !important;
}
