body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
#why-choose-us {
    scroll-margin-top: 50px;
}
.main-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -70px;
}
.background-banner {
    position: relative;
    width: 100%;
    height: 70%;
    background-image: url('/images/xipients/xipient-banner-img.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px;
    color: white;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}
.background-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.background-banner > * {
    position: relative;
    z-index: 2;
}
.fade-in-banner {
    animation: revealBanner 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px);
}
@keyframes revealBanner {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}
.cta-header {
    font-family: Afacad;
    line-height: 1;
    font-size: 3.1rem;
    font-weight: 500;
    color: #ffffff;
    padding-top: 7.2rem;
    margin-bottom: 1rem;
}
.cta-sub-header {
    font-family: Afacad;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.action-buttons {
    gap: 30px;
    padding: 1rem 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.button-content-wrap {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    text-decoration: none;
    background: #e8ebea;
    color: #113d6a;
    font-weight: 500;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    border: 1.5px solid #63bddb;
    transition: background 0.4s ease, transform 0.4s ease;
    perspective: 1000px;
    box-shadow: 0 8px 20px #1c64c64d;
}
.button-content-wrap:hover {
    background: white;
    transform: scale(1.05);
}
.display-xs {
    margin-right: 12px;
}
.button-arrow-wrap {
    position: relative;
    width: 28px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* fallback */
    /* background: linear-gradient(135deg, #1c64c680 0%, #63dbc680 100%); */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(28, 100, 198, 0.2); */
}
.button-content-wrap:hover .button-arrow-wrap {
    transform: translateX(8px) scale(1.15);
    /* background: linear-gradient(135deg, #63dbc6cc 0%, #1c64c6cc 100%);
    box-shadow: 0 6px 20px rgba(99, 219, 198, 0.4); */
}
.button-icon svg {
    width: 22px;
    height: 22px;
    stroke: #113d6a;
    transition: d 0.4s ease;
}
.arrow-default {
    display: block;
}
.arrow-hover {
    display: none;
}
.button-content-wrap:hover .arrow-default {
    display: none;
}
.button-content-wrap:hover .arrow-hover {
    display: block;
}
.why-us {
    font-family: Afacad;
    padding: 5px 35px;
    height: auto;
    position: relative;
    text-align: center;
    background: #fff;
    z-index: 1;
    scroll-margin-top: 65px; 
}
.section-title {
    font-family: Afacad;
    margin-top: 24px;
    margin-bottom: 0px;
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(180deg, #113d6a, #4c81b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    color: transparent;
    text-align: center;
}
.section-subtitle {
    font-family: Afacad;
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #113d6a;
    text-align: center;
}
.section-description {
    color: #7f7f7f;
    font-size: 20px;
    font-weight: 400;
    margin: 0 auto 40px;
}
.glass-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem 0.25rem;
}
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    border: 1px solid #113e6a38;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, #1c64c6, #63dbc6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(30px);
}
.glass-card:hover::before {
    opacity: 0.25;
}
.glass-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 10px 30px rgba(99, 219, 198, 0.25);
    border: 1px solid #113e6a38;
}
.glass-icon {
    width: 64px;
    height: 64px;
    background: rgba(17, 61, 106, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.4rem;
    box-shadow: 0 4px 12px rgba(17, 61, 106, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}  
.glass-icon i {
    font-size: 1.9rem;
    color: #fff;
}
.glass-card:hover .glass-icon {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(99, 219, 198, 0.45);
}
.glass-content {
    position: relative;
    z-index: 2;
}
.glass-content h3 {
    font-size: 1.25rem;
    color: #113d6a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.glass-content p {
    font-size: 1rem;
    color: #2b2b2b;
    line-height: 1.6;
}
.products {
    margin-top: 3rem;
    font-family: 'Afacad', sans-serif;
    padding: 40px 35px 60px;
    position: relative;
    text-align: center;
    background: #e8ebea57;
    z-index: 1;
    scroll-margin-top: 30px;
}
.products-content {
    display: flex;
    justify-content: center;
    padding: 0px;
    flex-wrap: wrap;
    gap: 20px;
}
.lhs {
    width: 100%;
    display: flex;
    justify-content: center;
}
.lhs ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.lhs li {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    width: 284px;
    box-shadow: inset 0px 1px 4px 0px #00000040;
    border-bottom: 5px solid #7e9bb885;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.lhs li:hover {
    background: #ffffff4f;
    transform: translateY(-5px);
    box-shadow: 0px 1px 4px 0px #00000040;
}
.feature-block {
    margin-top: 10px;
    margin-bottom: 15px;
}
.feature-block strong {
    display: block;
    margin-bottom: 6px;
    color: #1c64c6;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    gap: 8px !important;
}
.feature-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    box-shadow: none;
    border: none;
    padding: 0px;
    margin-bottom: 0px;
}
.feature-list li:hover {
    box-shadow: none;
    border: none;
    transform: translateY(0px);
}
.feature-arrow {
    margin-right: 8px;
    color: #113d6a;
    font-weight: bold;
}
.features {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.features li {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    width: 284px;
    text-align: left;
}
.icon-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.icon-heading .icon {
    font-size: 22px;
    color: #113d6a;
    background: linear-gradient(135deg, #1c64c694 0%, #63dbc663 100%);
    padding: 12px;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.lhs li strong {
    font-size: 18px;
    color: #113d6a;
    font-weight: 600;
}
.icon-text p,
.lhs li p {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
} 
.lhs li p {
    margin-bottom: 15px;
}
.banner-action-buttons {
    gap: 15px;
    padding: 0.5rem 0rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.btn {
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    margin: 0px !important;
}
.trial-banner-btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 11px 28px !important;
    background-color: #FFFFFF;
    color: #113d6ad9;
    border: 1px solid #113d6ad9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.demo-banner-btn {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px !important;
    background: #113d6a;
    color: #fff;
    border: 1px solid #113d6aad;
    box-shadow: inset 0px 4px 4px 0px #00000040;
}
.card-wrapper {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.who-for {
    font-family: Afacad;
    height: 35em;
    margin-top: 1rem;
    padding: 40px 0px 20px;
    border-radius: 8px;
    text-align: center;
    scroll-margin-top: 32px;
}

.scroll-wrapper {
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.scroll-cards-container {
    display: flex;
    gap: 2.5em;
    animation: scroll-left 15s linear infinite;
    width: max-content;
    padding: 30px 0px;
}

.scroll-feature-card {
    width: 19em;
    height: 16em;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 250px;
    justify-content: center;
    text-align: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    /* background: #48a6a71f; */
    background: linear-gradient(135deg, #1c64c654 0%, #63dbc638 100%);
    transition: all 0.3s ease;
    box-shadow: inset 0px 1px 4px 0px #00000040;
    cursor: pointer;
    margin-right: 16px;
    scroll-snap-align: start;
}  

.scroll-feature-card:hover {
    color: #48A6A7;
    border: 1px solid lightgray;
    background-color: #f2f2f2;
    transform: translateY(-10px) scale(1.02);
    box-shadow: inset 0px 1px 4px 0px #00000040;
}  
.scroll-feature-card .icon {
    font-size: 26px;
    padding: 16px;
    border-radius: 8px;
    color: #113d6a;
    border: 2px solid #113d6a;
    margin-bottom: 5px;
}  
.scroll-feature-card:hover .feature-title,
.scroll-feature-card:hover .feature-description {
    color: #fff;
}  
.scroll-feature-title {
    color: #113d6a;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 2px;
}  
.scroll-feature-description {
    margin: 0px;
    color: #373636;
    font-size: 16px;
}
.scroll-wrapper:hover .scroll-cards-container {
    animation-play-state: paused;
}
.scroll-feature-card.center-highlight {
    background: #fff;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(1.07);
    z-index: 2;
    transition: all 0.3s ease;
}      
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.what-sets-apart {
    font-family: Afacad, sans-serif;
    padding: 1rem 35px 55px;
    position: relative;
    text-align: center;
    background: #e8ebea57;
    scroll-margin-top: 55px;
}

.what-sets-apart > .section-description {
    text-align: center;
    color: #7f7f7f;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.value-box {
    background: linear-gradient(180deg, #ffffff, #f9fcff);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(28, 100, 198, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    border: 1px solid #e4f0ff;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(28, 100, 198, 0.12);
}

.image-wrapper {
    flex: 0 0 300px; /* Fixed width */
    height: 100%;
    overflow: hidden;
    position: relative;
    border-right: 1px solid #dceeff;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.value-box:hover > .image-wrapper img {
    transform: scale(1.05);
}

.value-content {
    padding: 1.4rem 1.2rem 1.8rem;
    text-align: left;
    flex-grow: 1;
}

.value-content h3 {
    color: #113d6a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.value-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.faq {
    font-family: Afacad;
    padding: 1.5rem 2.2rem 2.75rem;
    position: relative;
    text-align: center;
    scroll-margin-top: 50px;
    border-radius: 12px;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.faq-item {
    font-family: Afacad;
    cursor: pointer;
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: inset 0px 1px 4px 0px #00000020;
    background: #e8ebea85;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-4px);
}
.faq-icon {
    margin-right: 15px;
}
.faq-question {
    cursor: pointer;
    color: #113d6a;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.faq-answer {
    margin-top: 0.75rem;
    display: none;
    font-size: 17px;
    color: #333;
    padding: 10px 0px;
    border-top: 1px solid #113d6a;
}
.faq-answer p {
    margin: 0px;
    padding-left: 6px;
    text-align: left;
}
.faq-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px 10px;
}
.faq-cta p {
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}
.explore-btn {
    color: #006A71;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

@keyframes arrowShift {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}
  
.explore-btn .arrow {
    display: inline-block;
    margin-left: 5px;
    animation: arrowShift 1.2s ease-in-out infinite;
}
  
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-overlay.hidden {
    display: none;
}
.modal-content {
    background: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    font-family: 'Afacad', sans-serif;
}
.modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #e50914;
}
.modal-content input[type="text"],
.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.permission-input {
  margin: 10px auto;
}
#checkbox,#checkboxCosmi {
    margin: 0;
    cursor: pointer;
    margin-right: 8px;
    width: 16px;  
    height: 16px;
    border: 1px solid #a4a1a1;
    border-radius: 4px;
    appearance: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#checkbox,#checkboxCosmi:checked {
    background-color: #e50914;
    border-color: #e50914;
}
#checkbox,#checkboxCosmi:checked::before {
    content: "✔";
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#checkbox,#modalCheckbox {
    margin: 0;
    cursor: pointer;
    margin-right: 8px;
    width: 16px;  
    height: 16px;
    border: 1px solid #a4a1a1;
    border-radius: 4px;
    appearance: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#checkbox,#modalCheckbox:checked {
    background-color: #e50914;
    border-color: #e50914;
}
#checkbox,#modalCheckbox:checked::before {
    content: "✔";
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-input {
    color: #4f4c4c;
    margin: 10px 0px;
    display: flex;
    align-items: center;
}
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #e50914;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.close-button {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
.thank-you-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: var(--background);
}
.thank-you-content {
    background-color:var(--background);
    border: 1px solid #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    max-width: 500px;
    text-align: center;
}
.thank-you-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.thank-you-content p {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.thank-you-content h3 {
    color: var(--primary-color);
    cursor: pointer;
}
.cta {
    background: 
        linear-gradient(to bottom, rgb(0 0 0 / 50%) 80%, #0b2d50 100%), 
        url('/images/xipients/xipient-cta-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 82px;
    text-align: center;
    box-shadow: inset 0px 1px 4px 0px #00000010;
    font-family: 'Afacad', sans-serif;
    position: relative;
    z-index: 1;
}
.cta-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #cfedfb;
    margin-top: 0px;
    margin-bottom: 10px;
}
.cta-description {
    color: #e8ebea;
    font-size: 20px;
    font-weight: 400;
    margin: 0px 0px 30px;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.cta-btn.unified {
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    color: #113d6a;
    background-color: #ddf4ff;
    border: 2px solid transparent;
    transition: all 0.3s ease, transform 0.3s ease;
}
.cta-btn.unified:hover {
    background-color: #ddf4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cta-btn.unified.outline {
    background-color: transparent;
    color: #ddf4ff;
    border: 2px solid #ddf4ff;
}
.cta-btn.unified.outline:hover {
    background-color: transparent;
    transform: translateY(-2px);
}
@keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .background-banner {
        padding: 0;
        object-fit: contain;
        max-height: 28rem;
        margin-bottom: 5px;
    }
    .mobile-hide-br {
        display: none;
    }
    .cta-header {
        font-size: 6vw;
        margin-top: 7em;
        margin-bottom: 0px;
        padding: 0px 10px 10px;
    }
    .cta-sub-header {
        font-size: 3.5vw;
        padding: 5px 25px;
        margin-bottom: 20px;
    }
    .button-content-wrap {
        padding: 8px 12px !important;
    }
    .products {
        padding: 20px 30px;
        margin-top: 1rem;
    }
    .why-us {
        padding: 20px 25px;
    }
    .section-title {
        font-size: 2rem;
        margin-top: 0px;
    }
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0px 20px;
    }
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    .glass-card-grid {
        padding: 0.25rem;
    }
    .why-it-matters-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
        padding: 0;
    }
    .lhs,
    .rhs {
        width: auto;
        padding: 0 10px;
        text-align: center;
    }
    .lhs ul {
        padding-left: 0;
    }
    .lhs li {
        padding: 24px 40px;
    }
    .feature-list li {
        padding: 4px 0px;
    }
    .icon-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .icon-text .icon {
        margin-top: 0;
    }
    .rhs img {
        max-width: 100%;
        height: auto;
    }
    .cards-container {
        flex-direction: column;
        gap: 20px;
    }
    .card-wrapper {
        width: auto;
        padding: 2rem 1rem;
    }
    .card-icon {
        width: 60px;
        height: 60px;
    }
    .card-info h3 {
        font-size: 1.2rem;
    }
    .card-info p {
        font-size: 0.95rem;
    }
    .banner-action-buttons,
    .action-buttons {
        gap: 15px;
        padding: 1rem;
    }
    .action-text {
        font-size: 1.2rem;
        text-align: center;
    }
    .btn,
    .trial-banner-btn,
    .demo-banner-btn,
    .free-trial-btn,
    .request-demo-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .who-for {
    height: auto;
    padding: 30px 10px 50px;
    }

    .scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    }

    .scroll-cards-container {
        gap: 1.2em;
        padding: 20px 10px;
        animation: scroll-left 15s linear infinite; 
    }
    .scroll-feature-card {
        width: 85%;
        max-width: 240px;
        height: auto;
        padding: 20px 15px;
        margin-right: 12px;
    }
    .scroll-feature-title {
        font-size: 1rem;
    }
    .scroll-feature-description {
        font-size: 0.95rem;
    }
    .scroll-feature-card .icon {
        font-size: 24px;
        padding: 12px;
        margin-bottom: 8px;
    }
    .scroll-feature-card:hover {
        transform: none;
        background-color: #f8f8f8;
    }
    .scroll-feature-card.center-highlight {
        transform: none;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    }
    .what-sets-apart {
        padding: 1.5rem 1rem 3rem;
        border-radius: 10px;
    }
    .what-sets-apart > .section-description {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    .values-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        display: flex;
    }
    .value-box {
        flex-direction: column;
        width: 90%;
        max-width: 400px;
    }
    .image-wrapper {
        flex: none;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #dceeff;
    }
    .image-wrapper img {
        width: 100%;
        height: 180px !important;
        object-fit: cover;
    }
    .value-content {
        text-align: center;
        padding: 15px;
    }
    .value-content h3 {
        font-size: 1.05rem;
    }
    .value-content p {
        font-size: 0.95rem;
    }
    .faq {
        padding: 1.4rem 1.875rem 2rem;
    }
    .faq-container {
        gap: 0.75rem;
        margin-top: 1.2rem;
    }
    .faq-item {
        padding: 0.9rem 1rem;
    }
    .faq-question {
        font-size: 1rem;
        align-items: flex-start;
        text-align: left;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
    .faq-answer p {
        padding-left: 0;
    }
    .cta {
        padding: 2.5rem 1.2rem;
        background-size: cover;
        background-position: center;
        text-align: center;
    }
    .cta-heading {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .cta-btn.unified {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    .thank-you-content {
        margin: 2rem 1.5rem;
        padding: 2rem;
    }
    .thank-you-content h1 {
        font-size: 2rem;
    }
    .thank-you-content p {
        font-size: 1rem;
    }
    .thank-you-content .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}