body {
    overflow-x: hidden;
    margin: 0px;
}

.hero_banner {
    background-image: url("assets/bg.png");
    background-image: url("../img/bg.png");
    width: 100vw;
    height: 105vh;
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 50px;
    gap: 20vw;
    box-sizing: border-box;
}

.left h1 {
    font-family: 'Jost', sans-serif;
    color: #312620;
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
}

.left h2 {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #676565;
    margin-bottom: 15px;
}

.trust-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    background-color: transparent;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.trust-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    /* Creates a subtle pink-to-orange gradient look for the line art */
    stroke: #ff4e50;
    filter: drop-shadow(1px 1px 0px #f9d423);
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trust-text strong {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-text span {
    font-size: 11px;
    color: #1a1a1a;
    font-weight: 400;
}

.prime {
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #ff2a5f 0%, #ff7328 60%, #ff9e1b 100%);
    color: #fff;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.pop {
    background: linear-gradient(90deg, #ff2a5f 0%, #ff7328 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.second {
    border-radius: 50px;
    border: 1px solid #cccccc;
    background: #ffffff;
    color: #333333;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.left {
    width: 40vw;
}

.advice-form-container {
    /* width: 30vw; */
    min-width: 340px;
    /* Prevents form from getting too squished on mobile */
    box-sizing: border-box;
    padding: 15px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: "Roboto", sans-serif;
}

.advice-form-container h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 700;
}

/* Form Row Setup */
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 14px;
}

/* Labels */
.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
}

/* Inputs, Selects, Textareas Styling */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #333333;
    background-color: #ffffff;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

/* Custom Dropdown Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 35px;
}

.select-wrapper::after {
    content: "➔";
    transform: rotate(90deg);
    font-size: 10px;
    color: #4a5568;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
    pointer-events: none;
}

/* Textarea tweaks */
.form-group textarea {
    resize: vertical;
}

.new {
    width: 100%;
}

/* Footer Styling */
.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer .stars {
    color: #ff9e1b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.form-footer p {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.4;
    margin: 0;
}

.form-group textarea {
    height: 50px;
}

/* Responsive collapse on smaller viewport widths */
@media (max-width: 768px) {
    .advice-form-container {
        width: 90vw;
        /* Take up majority screen space on phone screen sizes */
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 12px;
    }
}

@media (max-width: 1080px) {
    .advice-form-container {
        width: 30vw;
    }

    .trust-banner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        background-color: #f0f0f0a1;
    }

    .trust-badges-wrapper .tb-container {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hero_banner {
        gap: 5vw;
        height: auto;

    }
}

@media(max-width:760px) {
    .hero_banner {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        height: auto;
        padding: 0px;
    }

    .left {
        text-align: center;
        width: 90vw;
        justify-self: center;
    }

    .right {
        justify-self: center;
    }

    .trust-banner {
        justify-self: center;
    }

    .buttons_head {
        display: flex;
        gap: 15px;
    }
}

/* Scoped container to prevent global leakage */
.trust-badges-wrapper .tb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    padding: 24px 16px;
    background: #ffffff;
    justify-self: center;
}

.trust-badges-wrapper .tb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badges-wrapper .tb-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badges-wrapper .tb-icon svg {
    width: 100%;
    height: 100%;
}

/* Scoped SVG linear gradient styling */
.trust-badges-wrapper .tb-icon svg path,
.trust-badges-wrapper .tb-icon svg circle {
    stroke: url(#tb-gradient);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-badges-wrapper .tb-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: #222222;
    margin: 0;
}

@media(max-width:760px) {
    .trust-badges-wrapper .tb-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Scoped container styling */
.nail-extractor-section .ne-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    background: #ffffff;
}

/* Desktop side-by-side layout */
@media (min-width: 768px) {
    .nail-extractor-section .ne-container {
        flex-direction: row;
        align-items: center;
    }
}

/* Image Block */
.nail-extractor-section .ne-image-block {
    flex: 1;
    width: 100%;
}

.nail-extractor-section .ne-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* Content Block */
.nail-extractor-section .ne-content-block {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nail-extractor-section .ne-heading {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
    font-family: 'Jost', sans-serif;
    ;
}

.nail-extractor-section .ne-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

.nail-extractor-section .ne-subheading {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin: 8px 0 0 0;
}

/* List Layout */
.nail-extractor-section .ne-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nail-extractor-section .ne-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
}

/* SVG Check Circle Styling */
.nail-extractor-section .ne-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.nail-extractor-section .ne-icon svg {
    width: 100%;
    height: 100%;
}

.nail-extractor-section .ne-icon svg circle {
    fill: none;
    stroke: #f19fa5;
    /* Soft pink color to match original image */
    stroke-width: 2;
}

.nail-extractor-section .ne-icon svg path {
    fill: none;
    stroke: #f19fa5;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nd-extractor-section {
    line-height: 1.6;
    color: #333333;
    width: 100%;
    box-sizing: border-box;
}

.nd-extractor-section *,
.nd-extractor-section *::before,
.nd-extractor-section *::after {
    box-sizing: border-box;
}

.nd-extractor-section .nde-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #FBF5F5;
}

.nd-extractor-section .nde-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Unique Text Column Styles */
.nd-extractor-section .nde-text-column {
    display: flex;
    flex-direction: column;
}

.nd-extractor-section .nde-heading {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 1rem;
    color: #333333;
    font-family: 'Jost', sans-serif;
}

.nd-extractor-section .nde-intro-text {
    color: #555555;
    margin-bottom: 14px;
    font-size: 14px;
}

.nd-extractor-section .nde-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nd-extractor-section .nde-checklist-item {
    display: flex;
    align-items: flex-start;
    color: #333333;
    font-size: 14px;
}

.nd-extractor-section .nde-icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #f2c7ce;
    margin-right: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.nd-extractor-section .nde-icon-wrapper::after {
    content: '✓';
    color: #f2c7ce;
    font-weight: bold;
    font-size: 1.1rem;
}

.nd-extractor-section .nde-footer-text {
    color: #555555;
    font-size: 14px;
    margin-top: 5px;
}

/* Unique Image Column Styles */
.nd-extractor-section .nde-image-column {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f9f5fa;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.nd-extractor-section .nde-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
    .nd-extractor-section .nde-layout-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .nd-extractor-section .nde-image-column {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        aspect-ratio: auto;
        height: 100%;
    }

    .nd-extractor-section .nde-text-column:first-child {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .nd-extractor-section .nde-text-column:last-child {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

@media (max-width: 768px) {
    .nd-extractor-section .nde-container {
        padding: 2rem 1.5rem;
    }

    .nd-extractor-section .nde-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nd-extractor-section .nde-image-column {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .nd-extractor-section .nde-text-column:first-child,
    .nd-extractor-section .nde-text-column:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .nd-extractor-section .nde-heading {
        font-size: 22px;
    }

}

.ndx-guide-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ndx-guide-section {
    width: 100%;
    background-color: #ffffff;
    padding: 56px 24px 40px;
    font-family: 'Roboto', sans-serif;
}

.ndx-guide-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* ---------- Heading ---------- */

.ndx-guide-heading {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.ndx-guide-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    color: #6b6b6b;
    max-width: 780px;
    margin: 0 auto 40px;
}

/* ---------- Cards Grid ---------- */

.ndx-guide-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.ndx-guide-card {
    position: relative;
    background-color: #fafafa;
    border-radius: 14px;
    padding: 46px 22px 28px;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ndx-guide-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ndx-guide-card-number {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #f0475a;
    color: #f0475a;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ndx-guide-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ndx-guide-card-icon svg {
    width: 44px;
    height: 44px;
}

.ndx-guide-card-title {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.25;
}

.ndx-guide-card-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b6b6b;
}

/* ---------- Footer Note ---------- */

.ndx-guide-footer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.ndx-guide-footer-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ndx-guide-footer-icon svg {
    width: 30px;
    height: 30px;
}

.ndx-guide-footer-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #4a4a4a;
}

/* ---------- Tablet ---------- */

@media (max-width: 1024px) {
    .ndx-guide-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .ndx-guide-section {
        padding: 48px 20px 36px;
        width: 90vw;
        justify-self: center;
    }
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {
    .ndx-guide-section {
        padding: 40px 16px 32px;
        width: 90vw;
    }

    .ndx-guide-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .ndx-guide-subtext {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .ndx-guide-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .ndx-guide-card {
        padding: 42px 20px 24px;
    }


    .ndx-guide-footer {
        gap: 12px;
    }

    .ndx-guide-footer-text {
        font-size: 13px;
    }
}

.rvs-control-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rvs-control-section {
    width: 100%;
    background-color: #FBF5F5;
    padding: 56px 24px 40px;
    font-family: 'Roboto', sans-serif;
}

.rvs-control-inner {
    /* max-width: 1280px; */
    margin: 0 auto;
}

/* ---------- Heading ---------- */

.rvs-control-heading {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.rvs-control-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    color: #6b6b6b;
    max-width: 900px;
    margin: 0 auto 44px;
}

/* ---------- Feature Row ---------- */

.rvs-control-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px 20px;
    margin-bottom: 40px;
    justify-items: center;
}

.rvs-control-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 150px;
    max-width: 210px;
}

.rvs-control-feature-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #f0475a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rvs-control-feature-icon svg {
    width: 18px;
    height: 18px;
}

.rvs-control-feature-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #2b2b2b;
}

/* ---------- Footer Callout ---------- */

.rvs-control-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fdf1e9;
    border: 1px solid #f4d9c6;
    border-radius: 14px;
    padding: 26px 28px;
    max-width: 90vw;
    margin: 0 auto;
}

.rvs-control-callout-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rvs-control-callout-icon svg {
    width: 26px;
    height: 26px;
}

.rvs-control-callout-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
    color: #2b2b2b;
}

/* ---------- Tablet ---------- */

@media (max-width: 1024px) {
    .rvs-control-section {
        padding: 48px 20px 36px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .rvs-control-features {
        justify-content: flex-start;
        gap: 26px 24px;
        grid-template-columns: repeat(2, 1fr);
        /* width:90vw; */
    }

    .rvs-control-feature {
        flex: 1 1 45%;
        max-width: none;
    }

    .rvs-control-inner {
        width: 90vw;
    }
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {
    .rvs-control-section {
        padding: 40px 0px;
    }

    .rvs-control-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .rvs-control-subtext {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .rvs-control-features {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 30px;
    }

    .rvs-control-feature {
        flex: 1 1 auto;
        max-width: none;
    }

    .rvs-control-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 22px 20px;
    }

    .rvs-control-callout-text {
        font-size: 13px;
    }
}


.rvs-cta-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.rvs-cta-section {
    width: 100%;
    background-color: #ffffff;
    /* padding: 40px 24px; */
    font-family: 'Roboto', sans-serif;
}

.rvs-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ---------- Gradient Banner ---------- */

.rvs-cta-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(100deg, #e6144d 0%, #f2472f 55%, #f5893c 100%);
    border-radius: 18px;
    padding: 28px 40px 28px 28px;
    margin-bottom: 36px;
}

.rvs-cta-image-wrap {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px dashed rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    text-align: center;
    padding: 12px;
}

.rvs-cta-content {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width:70vw;
}

.rvs-cta-text-block {
    flex: 1;
}

.rvs-cta-heading {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.rvs-cta-paragraph {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

.rvs-cta-paragraph:last-of-type {
    margin-bottom: 0;
    font-weight: 500;
}

.rvs-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.rvs-cta-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    padding: 13px 26px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.rvs-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.rvs-cta-btn-primary {
    background-color: #ffffff;
    color: #e6144d;
    border: 1.5px solid #ffffff;
}

.rvs-cta-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

/* ---------- Contact Row ---------- */

.rvs-cta-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 4px 8px;
    justify-content: center;
    margin-bottom:30px;
}

.rvs-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rvs-cta-contact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rvs-cta-contact-icon svg {
    width: 26px;
    height: 26px;
}

.rvs-cta-contact-label {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.rvs-cta-contact-value {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
}

/* ---------- Tablet ---------- */

@media (max-width: 1024px) {
    .rvs-cta-banner {
        flex-wrap: wrap;
    }

    .rvs-cta-content {
        flex-wrap: wrap;
        width: 400px !important;
    }

    .rvs-cta-buttons {
        flex-direction: row;
        width: 100%;
    }

    .rvs-cta-btn {
        flex: 1;
    }

    .rvs-cta-contacts {
        justify-content: space-between;
        gap: 24px;
    }
}

/* ---------- Mobile ---------- */

@media (max-width: 640px) {
    .rvs-cta-section {
        /* padding: 32px 16px; */
    }

    .rvs-cta-banner {
        flex-direction: column;
        align-items: center;
        padding: 22px 20px;
        border-radius: 16px;
        margin-bottom: 28px;
    }

    .rvs-cta-image-wrap {
        width: 100px;
        height: 160px;
    }

    .rvs-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: auto !important;
    }

    .rvs-cta-heading {
        font-size: 19px;
    }

    .rvs-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .rvs-cta-btn {
        width: 100%;
    }

    .rvs-cta-contacts {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}



  .rvs-area-faq-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* justify-self: center; */
  }
 
  .rvs-area-faq-section {
    width: 85vw;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #ffffff;
    padding: 48px 24px;
    font-family: 'Roboto', sans-serif;
        justify-self: center;
  }
 
  .rvs-area-faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
 
  /* ---------- Shared Heading ---------- */
 
  .rvs-area-faq-heading {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
  }
 
  /* ---------- Areas We Serve (Left) ---------- */
 
  .rvs-area-col {
    display: flex;
    flex-direction: column;
  }
 
  .rvs-area-paragraph {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #5a5a5a;
    margin-bottom: 16px;
  }
 
  .rvs-area-body {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 10px;
  }
 
  .rvs-area-list-wrap {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
 
  .rvs-area-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  .rvs-area-list-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .rvs-area-list-icon svg {
    width: 18px;
    height: 18px;
  }
 
  .rvs-area-list-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #2b2b2b;
  }
 
  .rvs-area-map-wrap {
    flex-shrink: 0;
    width: 220px;
  }
 
  .rvs-area-map-wrap svg {
    width: 100%;
    height: auto;
  }
 
  /* ---------- FAQ (Right) ---------- */
 
  .rvs-faq-col {
    display: flex;
    flex-direction: column;
  }
 
  .rvs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  .rvs-faq-item {
    border: 1px solid #ececec;
    border-radius: 30px;
    overflow: hidden;
    transition: border-radius 0.2s ease;
  }
 
  .rvs-faq-item.rvs-faq-open {
    border-radius: 18px;
  }
 
  .rvs-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: left;
  }
 
  .rvs-faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fdeeef;
    color: #f0475a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.25s ease;
  }
 
  .rvs-faq-item.rvs-faq-open .rvs-faq-toggle-icon {
    transform: rotate(135deg);
  }
 
  .rvs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
 
  .rvs-faq-answer-inner {
    padding: 0 22px 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6b6b6b;
  }
 
  /* ---------- Tablet ---------- */
 
  @media (max-width: 900px) {
    .rvs-area-faq-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
 
    .rvs-area-map-wrap {
      width: 180px;
    }
  }
 
  /* ---------- Mobile ---------- */
 
  @media (max-width: 560px) {
    .rvs-area-faq-section {
      padding: 36px 0px;
    }
 
    .rvs-area-faq-heading {
      font-size: 20px;
    }
 
    .rvs-area-body {
      flex-direction: column;
      gap: 20px;
    }
 
    .rvs-area-map-wrap {
      width: 100%;
      max-width: 220px;
      align-self: center;
    }
 
    .rvs-area-list-wrap {
      grid-template-columns: 1fr 1fr;
    }
 
    .rvs-faq-question {
      padding: 13px 16px;
      font-size: 13px;
    }
 
    .rvs-faq-answer-inner {
      padding: 0 16px 14px;
      font-size: 13px;
    }
  }