/* ==========================================================================
   Hero Banner
   Matches the "Acuity Advantage" hero design.
   ========================================================================== */

.hero-banner {
    position: relative;
    min-height: 1197px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
    background-color: #0a0a0a;
    isolation: isolate;
}

/* --- Background video --- */
.hero-banner__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0px;
}

.hero-banner__overlay:before {
    content: "";
    position: absolute;
    /* inset: 0; */
    /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.75) 100%
    ); */
    left: 0;
    bottom: 230px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, #000000 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 64%);
}
.hero-banner__overlay:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    max-height: 230px;
    z-index: 0;
}

/* --- Layout wrapper --- */
.hero-banner__inner {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: end;
}

.hero-banner__content {
    text-align: center;
    max-width: 1210px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* --- Title --- */
.hero-banner__title {
    text-align: center;
    margin: 0 0;
    color: var(--white-color) !important;
}

/* --- Tag list (HOME | TRAVEL | LIFE) --- */
.hero-banner__tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.hero-banner__tag {
    position: relative;
    font-family: var(--font-DMSans);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.39;
    letter-spacing: 8px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
    padding: 0 50px;
    margin-bottom: 0 !important;
}

.hero-banner__tag + .hero-banner__tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1em;
    background: rgba(255, 255, 255, 0.2);
}

/* --- Banner text (paragraph below tags) --- */
.hero-banner__text {
    color: var(--white-color);
    margin: 0 auto 20px;
}

.page-template-page-new-home-template .hero-banner__text p {
    color: var(--white-color) !important;
}

.hero-banner__text p:last-child {
    margin-bottom: 0;
}

/* --- Button --- */
.hero-banner__button {
    width: fit-content;
    margin: 0 auto;
    gap: 30px;
}
.hero-banner__button:hover,
.hero-banner__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(66, 87, 196, 0.35);
    outline: none;
}


.hero-banner__button-arrow {
    width: 30px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* --- Tablet --- */
@media (max-width: 991px) {
     .hero-banner {
        min-height: 100vh;
    }
    .hero-banner__inner {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .hero-banner__content {
        gap: 32px;
    }
    .hero-banner__tag {
        padding: 0 20;
        font-size: 20px;
        letter-spacing: 4px;
    }
    .hero-banner__button {
        gap: 10px;
    }  
}

/* --- Mobile --- */
@media (max-width: 767px) {
    .hero-banner {
        min-height: 820px;
    }

    .hero-banner__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-banner__content {
        gap: 24px;
    }

    .hero-banner__tags {
        gap: 0.25rem;
    }

    .hero-banner__tag {
        padding: 0 0.9rem;
    }

    .hero-banner__text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-banner__button {
        font-size: 0.78rem;
        padding: 0.95rem 1.5rem;
        gap: 1.25rem;
    }

    .hero-banner__button-arrow {
        width: 22px;
    }
}

/* --- Reduce motion: pause autoplaying video --- */
@media (prefers-reduced-motion: reduce) {
    .hero-banner__video {
        display: none;
    }
    .hero-banner__button-arrow,
    .hero-banner__button {
        transition: none;
    }
}

.cpoints-logo-section {
    background-color: var(--black-color);
    padding-top: 112px;
    padding-bottom: 112px;
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}
.cpoints-logo__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.cpoints-logo__panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 75px;
    background-color: #141414;
    justify-content: space-between;
}
.cpoints-logo__list {
    list-style: none;
    margin-bottom: 0 !important;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.cpoints-logo__item {
    padding: 50px 40px;
    margin: 0 !important;
    color: var(--white-color);
    font-family: var(--font-DMSans);
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.cpoints-logo__item + .cpoints-logo__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.1em;
    background: rgba(255, 255, 255, 0.2);
}
.cpoints-logo__icon {
    width: 26px;
    height: 26px;
}
.cpoints-logo__description {
    color: var(--white-color) !important;
    text-align: center;
    max-width: 1198px;
    margin: 0 auto;
}
.cpoints-logo__description p {
    color: var(--white-color) !important;
    text-align: center;
}
.cpoints-logo__description p:last-child {
    margin-bottom: 0 !important;
}
.cpoints-logo__badge {
    padding-right: 50px;
}
.cpoints-logo__badge img {
    margin: 0 !important;
    max-height: 126px;
    max-width: 126px;
    object-fit: contain;
}
.cpoints-logo__item svg path {
    fill: #fff;
}

@media (max-width: 1440px) {
    .cpoints-logo__panel {
        gap: 20px;
    }
    .cpoints-logo__item {
        padding-left: 20px;
        padding-right: 20px;
    }
    .cpoints-logo__badge {
        padding-right: 20px;
    }
}

@media (max-width: 1199px) {
    .cpoints-logo__panel {
        justify-content: center;
    }
    .cpoints-logo__item {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .cpoints-logo__badge {
        margin-bottom: 0;
    }
    .cpoints-logo__badge img {
        object-fit: contain;
    }
}
@media (max-width: 991px) {
    .cpoints-logo-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .cpoints-logo__list {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .cpoints-logo-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cpoints-logo__list {
        justify-content: center;
        flex-direction: column;
    }
    .cpoints-logo__item + .cpoints-logo__item::before {
        display: none;
    }
}
/* Service Grid */
.services-grid-section {
    padding-top: 100px;
}
/* Services Grid Section */
.services-grid-section {
    background-color: #000;
    padding: 100px 20px 20px;
    color: #fff;
}

.services-grid-container {
    margin: 0 auto;
}

/* Section Title */
.services-grid-title {
    text-align: center;
    margin: 0 0 80px !important;
    color: #fff !important;
}

/* Grid Layout - 3 columns, 2 rows */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.service-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
    background-color: #111;
    min-height: 686px;
    width: 100%;
    max-height: 686px;
}
.service-card-inner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100.2%;
}
/* Dark gradient overlay - darker at top so text stays readable */
.service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0) 48%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Text content positioned at top */
.service-card-content {
    top: 0;
    left: 0;
    right: 0;
    position: relative;
    z-index: 2;
    padding: 48px;
    color: var(--white-color) !important;
	text-transform: none;
    letter-spacing: normal;
}

.service-card-title {
    margin: 0 0 16px;
    color: var(--white-color) !important;
    text-align: right;
}

.service-card-description {
    margin-left: auto;
    text-align: right;
    color: var(--white-color) !important;
    max-width: 430px;
    font-weight: 300 !important;
}

/* .page-template-page-new-home-template p.service-card-description {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.page-template-page-new-home-template .service-card-inner:hover p.service-card-description {
    opacity: 1;
    visibility: visible;
} */

/* Responsive */
@media (max-width: 1440px) {
    .service-card {
        min-height: auto;   
    }
    .service-card-content {    
        padding: 32px 24px;
    }

}
@media (max-width: 991px) {
    .services-grid-title {
        margin-bottom: 60px !important;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid-title {
        margin-bottom: 40px !important;
    }
    .services-grid {
        grid-template-columns: repeat(1, 1fr);  
        min-height: 350px;
    }
    .service-card {
        aspect-ratio: 3 / 3;
    }
    .services-grid-section {
        padding: 50px 16px;
    }

    .service-card-content {
        padding: 24px 20px;
    }
}

/* /Service Grid */

/* Content Box with Background Image Section */
.content-box-section {
    background-color: #F7F2E8;
    position: relative;
    padding-top: 200px;
}

/* Header with title */
.content-box-title {
    color: #1C1F2A;
    margin: 0 !important;
    max-width: 671px;
}

/* Wrapper holds background image + overlay card */
.content-box-wrapper {
    position: relative;
    width: 100%;
}

/* Background image */
.content-box-bg {
    width: 100%;
    line-height: 0;
    margin-top: 60px;
}

.content-box-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 0;
}

.content-box-card-wrapper {
    /* position: absolute; */
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

/* The white card */
.content-box-card-main {
    position: absolute;
    max-width: 1440px;
    width: 100%;
}
.content-box-card--inner {
    background-color: rgba(255, 255, 255, 0.80);
    padding: 48px;
    max-width: 493px;
    width: 100%;
    backdrop-filter: blur(14.60px);
    box-shadow: 0px 4px 45.8px 0px #0000000D;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-box-text p {
    margin: 0 0 20px;
}

.content-box-text p:last-child {
    margin-bottom: 0;
}
.page-template-page-new-home-template a.content-box-button.btn {
    padding: 20px 20px;
    justify-content: center;
}

/* Key points - inline list joined with dots */
.content-box-points {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    font-size: 12px;
    letter-spacing: 2.2px;
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.content-box-points li {
    position: relative;
    padding: 0;
    font-size: 18px;
    line-height: 1.67 !important;
    font-weight: 300 !important;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}

.content-box-points li:first-child {
    padding-left: 0;
}

.content-box-points li:last-child {
    padding-right: 0;
}

.content-box-points li:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}

/* Button */
.content-box-button {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}
/* Responsive */
@media (max-width: 1440px) {
    .content-box-card-main {
        right: 20px;
    }
    .content-box-section {
        padding-top: 150px;
    }

}
@media (max-width: 1024px) {
    .content-box-section {
        padding-top: 100px;
    }
     .content-box-card-main {
        position: unset;
    }
    .content-box-card--inner {
        max-width: 100%;
    }
    .content-box-card-wrapper {
        margin-top: 24px;
        justify-content: flex-start;
    }
    .content-box-title {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .content-box-section {
        padding-top: 50px;
    }

    .content-box-bg img {
        max-height: 380px;
    }

    /* Card moves below image on mobile */
    
    .content-box-card--inner {
        padding: 24px;
        gap: 24px;
    }
    .content-box-card {
        max-width: 100%;
    }

    .content-box-points {
        justify-content: flex-start;
    }
    .content-box-card-wrapper {
        justify-content: center;
    }
}
@media (max-width: 460px) {
    .content-box-points {
        flex-direction: column;
    }
    .content-box-points li:not(:last-child)::after {
        display: none;
    }
}


/* Grid Section */
.grid-section {
    background: #F7F2E8;
    padding: 200px 0;
}

/* Header */
.grid-section-header {
    margin-bottom: 100px;
}

.grid-section-title {
    color: #1C1F2A;
    margin: 0 !important;
}

.grid-section-content {
    color: #1C1F2A;
    margin-top: 32px;
    margin-bottom: 0;
}

/* Grid */
.grid-section-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
}

/* Item */
.grid-item {
    display: flex;
    flex-direction: column;
}

/* Image with notched bottom-right corner */
.grid-item-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.grid-item-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 60px);
    height: 48px;
    background-color: #F7F2E8;
    /* max-width: 384px; */
}
.grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 464px;
    min-height: 464px;
    margin: 0px 0px 2px 1px;
}

/* Body */
.grid-item-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 356px;
}

.grid-item-title {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black-color);
    margin: 0 0 24px;
}

.grid-item-description {
    color: #4A5565 !important;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* Link */
.grid-item-link {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    color: #1C1F2A;
    text-decoration: none;
    font-size: 11.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s ease;
    align-self: flex-start;
}
.grid-item-link span {
    color: #1C1F2A;
}
.grid-item-link svg {
    transition: transform 0.3s ease;
}

.grid-item-link:hover svg {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1440px) {
    .grid-section {
        padding: 150px 0;
    }
}
@media (max-width: 1199px) {
    .grid-section {
        padding: 100px 0;
    }
    .grid-section-header {
        margin-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .grid-section {
        padding: 80px 0;
    }
    .grid-section-header {
        margin-bottom: 60px;
    }
    .grid-section-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .grid-section {
        padding: 50px 0;
    }

    .grid-section-header {
        margin-bottom: 40px;
    }
    .grid-section-items {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .grid-item-body {
        max-width: 100%;
    }
    .grid-item-image {
        aspect-ratio: 16 / 11;
    }
    .grid-item-image img {
        max-height: 99%;
        min-height: auto;
    }
}

/* CTA Section - sits on a split background (cream top, black bottom) */
.cta-section {
    background: linear-gradient(to bottom, #F7F2E8 0%, #F7F2E8 50%, #000 50%, #000 100%);
}

.cta-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 516px;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.cta-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.48) 100%);
}

/* Content */
.cta-content-wrapper {
    padding: 90px 120px;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 604px;
    color: var(--white-color);
}

.page-template-page-new-home-template .cta-title {
    font-weight: 400;
    color: var(--white-color) !important;
    margin: 0 0 32px !important;
}

.cta-text {
    color: var(--white-color) !important;
    margin: 0 0 32px;
    font-weight: 300;
}

/* Button */
.cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Responsive */
@media (max-width: 1199px) {
    .cta-content-wrapper {
        padding: 60px;
    }
}
@media (max-width: 767px) {
    .cta-wrapper {
        min-height: auto;
    }
    .cta-content-wrapper {
        padding: 24px;
    }
    .cta-content {
        max-width: 100%;
    }

    /* Stronger overlay on mobile for full-width text readability */
    .cta-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }

    .cta-button {
        min-width: 100%;
    }
}

/* Key Points Slider Section */
.key-points-section {
    background-color: #F7F2E8;
    padding: 46px 20px;
    overflow: hidden;
}

.key-points-slider {
    margin: 0 auto;
    position: relative;
}

.key-points-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.key-points-slider:not(.slick-initialized) .key-points-slide {
    flex: 0 0 auto;
}
.key-points-slide .point-divider {
    padding-left: 68px;
}

/* Each slide */
.key-points-slide {
    padding: 0 34px;
    text-align: center;
    position: relative;
    outline: none;
}

.key-points-text {
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 30%;
    text-transform: uppercase;
}

/* Slick overrides */
.key-points-slider .slick-track {
    display: flex !important;
    align-items: center;
}

.key-points-slider .slick-slide {
    height: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .key-points-section {
        padding: 32px 20px;
    }

    .key-points-slide .point-divider {
        padding-left: 24px;
    }

    .key-points-slide {
        padding: 0 12px;
        text-align: center;
        position: relative;
        outline: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 180px 0;
    overflow: hidden;
}

/* Header */
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
}

.page-template-page-new-home-template .testimonials-title {
    color: var(--white-color) !important;
    margin: 0 !important;
}

/* Nav arrows */
.testimonials-nav {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.testimonials-nav-btn {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.testimonials-nav-btn:hover {
    opacity: 0.4;
}

.testimonials-nav-btn svg {
    display: block;
    transition: transform 0.3s ease;
}

/* Flip the prev button SVG horizontally (same SVG used for both directions) */
.testimonials-prev svg {
    transform: scaleX(-1);
}

/* Disabled state when slick hits the start/end */
.testimonials-nav-btn.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider - allow quote icon to overflow card border */
.testimonials-slider {
    margin: 0 -15px;
    padding-top: 30px;
    overflow-x: hidden;
}

.testimonials-slider .slick-list {
    overflow: visible;
}

.testimonials-slider .slick-slide {
    padding: 0 20px;
    height: inherit;
}

.testimonials-slider .slick-slide > div {
    height: 100%;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider-slide {
    height: 100%;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    padding: 70px 70px 60px;
    height: 100%;
    min-height: 477px;
    display: flex;
    flex-direction: column;
}
.testimonial-quote-icon {
    position: absolute;
    top: -30px;
    right: 70px;
    z-index: 2;
    line-height: 0;
}

.testimonial-quote-icon svg {
    display: block;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.testimonial-stars svg {
    display: block;
}

/* Testimonial text */
.testimonial-text {
    color: var(--white-color) !important;
    margin: 0 0 50px;
    flex-grow: 1;
    font-weight: 300;
}

/* Divider line above author block */
.testimonial-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
    margin-bottom: 35px;
}

/* Author block */
.testimonial-author {
    margin-top: auto;
}

.testimonial-author-name {
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white-color) !important;
    margin: 0 0 10px;
}

.testimonial-author-designation {
    color: #A0A0A0 !important;
    margin: 0;
    font-weight: 300 !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .testimonial-card {
        padding: 50px 40px 40px;
    }
    .testimonials-header {
        margin-bottom: 40px;
    }
}
@media (max-width: 992px) {
    .testimonials-section {
        padding: 70px 0;
    }
    .testimonial-card {
        padding: 50px 24px 40px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 0px;
    }

    .testimonials-nav-btn svg {
        width: 64px;
        height: 16px;
    }

    .testimonial-card {
        padding: 36px 28px 30px;
        min-height: auto;
    }

    .testimonial-quote-icon svg {
        width: 48px;
        height: 48px;
    }

    .testimonial-quote-icon {
        top: -20px;
        right: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .cpoints-logo__panel {
        flex-direction: column;
    }
    .cpoints-logo__badge {
        padding-right: 0;
    }
    .cpoints-logo__item {
        justify-content: center;
    }
    .service-card-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.4) 48%);
    }
    .service-card-content { 
        display: flex;
        flex-direction: column;
        align-items: center;
        inset: 50%;
        transform: translate(-50%, -50%);
    }   
    .service-card-content p {
        text-align: center;
        max-width: 450px;
        margin: 0 auto;
    }
}




