:root {
    --primary-blue: #0077B6;
    --secondary-blue: #48CAE4;
    --dark-blue: #03045E;
    --light-blue: #ADE8F4;
    --neutral-gray: #707070;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --transition-speed: 0.3s;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-blue);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.section-container, .footer-container, .header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-button, .cta-button-light {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.cta-button {
    background-color: var(--primary-blue);
    color: var(--white);
}

.cta-button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.text-link {
    font-weight: 700;
    display: inline-block;
    margin-top: 0.5rem;
}

.site-header {
    width: 100%;
    padding: 1rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link img { height: 40px; }

.main-nav { display: none; }
.nav-link { font-weight: 600; padding: 0.5rem 1rem; }
.nav-link.active { color: var(--secondary-blue); }

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.burger-bar {
    width: 2rem;
    height: 0.25rem;
    background: var(--dark-blue);
    border-radius: 10px;
    transition: all var(--transition-speed) linear;
    position: relative;
    transform-origin: 1px;
}

.burger-menu.open .burger-bar:nth-child(1) { transform: rotate(45deg); }
.burger-menu.open .burger-bar:nth-child(2) { opacity: 0; transform: translateX(20px); }
.burger-menu.open .burger-bar:nth-child(3) { transform: rotate(-45deg); }

main > section {
    padding: 4rem 0;
    width: 100%;
    overflow: hidden;
}

.hero-section { padding: 4rem 0 2rem; }
.hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.hero-content { margin-bottom: 2rem; }
.hero-content h1 { margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--neutral-gray); }
.hero-image-container img { border-radius: 15px; }

.category-slider-section { background-color: var(--light-gray); }
.category-slider { position: relative; }
.slider-track-container { overflow: hidden; }
.slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 0.75rem;
    text-align: center;
}
.slide img {
    border-radius: 10px;
    margin: 0 auto 1rem auto;
    pointer-events: none;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-blue);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition-speed) ease;
}
.dot.active { background-color: var(--primary-blue); }

.js-tabs-section .tabs-container {
    max-width: 900px;
    margin: 0 auto;
}
.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tab-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-blue);
    background-color: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}
.tab-button.active {
    background-color: var(--primary-blue);
    color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-pane {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}
.tab-image-wrapper {
    width: 100%;
    max-width: 400px;
}
.tab-image-wrapper img {
    border-radius: 10px;
    width: 100%;
}
.tab-pane h4 { margin-bottom: 0.5rem; }
.pane-text .cta-button {
    margin-top: 1rem;
}
.guide-intro-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.guide-image-wrapper img { border-radius: 10px; }
.guide-text-content { text-align: center; }
.guide-text-content .section-title { margin-bottom: 1rem; }
.guide-text-content p { margin-bottom: 1.5rem; }

.js-slider-section { background-color: var(--light-gray); }
.comparison-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    cursor: ew-resize;
}
.image-container { position: relative; width: 100%; height: 100%; }
.image-before, .image-after { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;}
.image-after {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    margin: 0;
    z-index: 10;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 100%;
    width: 4px;
    background: transparent;
}
.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--white);
    pointer-events: none;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.handle-arrows {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.handle-arrows::before, .handle-arrows::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.handle-arrows::before { border-right: 6px solid var(--primary-blue); }
.handle-arrows::after { border-left: 6px solid var(--primary-blue); }

.expandable-content-section {
    background: linear-gradient(rgba(3, 4, 94, 0.7), rgba(3, 4, 94, 0.7)), url('images/20.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
}
.expandable-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    text-align: center;
}
.expandable-content-container h2 { color: var(--white); margin-bottom: 1rem; }
.expandable-text {
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    max-height: 6rem;
}
.expandable-text.expanded { max-height: 35rem; }
.expand-button {
    background: var(--secondary-blue);
    color: var(--dark-blue);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background-color var(--transition-speed) ease;
}
.expand-button:hover { background-color: var(--white); }

.asymmetric-feature-section { background-color: var(--light-gray); }
.asymmetric-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.asymmetric-image img { border-radius: 10px; }
.asymmetric-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.asymmetric-text h2 { margin-bottom: 1rem; }

.showcase-grid-section { background-color: var(--white); padding: 4rem 0; }
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    min-height: 250px;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.grid-item:hover img { transform: scale(1.05); }
.grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(3,4,94,0.8), transparent);
    padding: 2rem 1rem 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.final-cta-section { padding: 4rem 0; background-color: var(--light-gray); }
.cta-container { text-align: center; }
.cta-container p { max-width: 600px; margin: 1rem auto 2rem; }

.site-footer {
    background-color: var(--dark-blue);
    color: var(--light-blue);
    padding: 4rem 0 2rem;
}
.footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
}
.footer-branding img { height: 40px; margin: 0 auto 1rem; }
.footer-tagline { font-style: italic; margin-bottom: 1rem; }
.footer-copyright { font-size: 0.9rem; color: var(--light-blue); opacity: 0.7; }
.footer-nav-group h4 { color: var(--white); margin-bottom: 1rem; }
.footer-nav-list a { color: var(--light-blue); }
.footer-nav-list a:hover { color: var(--white); }
.footer-nav-list li { margin-bottom: 0.5rem; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.back-to-top-btn:hover {
    background-color: var(--dark-blue);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media (min-width: 480px) {
    .slide { width: 50%; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    main > section { padding: 5rem 0; }
    .burger-menu { display: none; }
    .main-nav { display: block; }
    .nav-list { display: flex; gap: 0.5rem; }

    .hero-container { flex-direction: row; text-align: left; gap: 2rem; }
    .hero-content { flex: 1 1 50%; }
    .hero-image-container { flex: 1 1 50%; }

    .slide { width: 33.333%; }
    .slide img { height: 280px; }

    .tab-buttons { flex-direction: row; justify-content: center; gap: 1rem; }
    .tab-button { width: auto; }
    .tab-pane { flex-direction: row; text-align: left; gap: 2rem; }
    .tab-image-wrapper { width: 40%; }
    .pane-text { width: 60%; }

    .guide-intro-container { flex-direction: row; gap: 4rem; }
    .guide-image-wrapper { flex: 1 0 45%; }
    .guide-text-content { flex: 1 1 55%; text-align: left; }

    .asymmetric-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;
    }
    .asymmetric-image { flex: 1 0 40%; }
    .asymmetric-text { flex: 1 1 55%; margin-top: -3rem; }

    .showcase-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 250px);
    }
    .grid-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
    .grid-item:nth-child(2) { grid-column: 2 / 4; grid-row: 1 / 2; }
    .grid-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
    .grid-item:nth-child(4) { grid-column: 3 / 4; grid-row: 2 / 3; }
    .grid-item:nth-child(5) { grid-column: 4 / 5; grid-row: 1 / 3; }
    
    .footer-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-branding { flex: 2; }
    .footer-branding img { margin: 0 0 1rem; }
    .footer-nav-group { flex: 1; }
}

@media (min-width: 1024px) {
    main > section { padding: 6rem 0; }
    .nav-list { gap: 1.5rem; }
    .slide { width: 25%; }
}

@media (max-width: 767px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }
    .main-nav.open { display: flex; }
    .nav-list { flex-direction: column; width: 100%; text-align: center; }
    .nav-list li { width: 100%; }
    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
}
.hero-products-section {
    background: linear-gradient(rgba(3, 4, 94, 0.6), rgba(3, 4, 94, 0.6)), url('images/28.webp') no-repeat center center/cover;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.hero-products-content h1 {
    color: var(--white);
}

.hero-products-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.categories-grid-section {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    min-height: 250px;
}

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

.grid-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.card-overlay h3 {
    color: var(--white);
    font-size: 1.75rem;
}

.solution-finder-section {
    background-color: var(--light-gray);
}

.section-subtitle {
    text-align: center;
    margin: -2rem auto 2rem;
    max-width: 500px;
    color: var(--neutral-gray);
}

.solution-finder {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.solution-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-blue);
    background-color: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.solution-btn.active, .solution-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.solution-pane {
    display: none;
    text-align: center;
}

.solution-pane.active {
    display: block;
}

.solution-pane p {
    margin-bottom: 1.5rem;
}

.spotlight-section {
    padding: 4rem 0;
}

.spotlight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.spotlight-image img {
    border-radius: 10px;
}

.spotlight-text h2 {
    margin-bottom: 1rem;
}

.spotlight-text p {
    margin-bottom: 1.5rem;
}

.faq-section {
    background-color: var(--light-gray);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-blue);
}

.accordion-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-question::after {
    transform: rotate(45deg);
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-answer p {
    padding: 0 1.25rem 1.25rem;
    line-height: 1.7;
}

.value-prop-section {
    padding: 4rem 0;
}

.value-prop-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.value-item h3 {
    margin-bottom: 0.5rem;
}

.final-cta-products-section {
    background-color: var(--dark-blue);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.final-cta-content h2 {
    color: var(--white);
}

.final-cta-content p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    opacity: 0.9;
}

@media (min-width: 500px) {
    .solution-buttons {
        flex-direction: row;
    }
    .solution-btn {
        width: auto;
        flex: 1;
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-large {
        grid-row: span 2;
        min-height: 515px;
    }
    .spotlight-container {
        flex-direction: row-reverse;
        gap: 3rem;
    }
    .spotlight-image {
        flex: 1 0 45%;
    }
    .spotlight-text {
        flex: 1 1 55%;
    }
    .value-prop-container {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .grid-card:nth-child(2) {
        grid-column: 2 / 3;
    }
    .grid-card:nth-child(3) {
        grid-column: 3 / 4;
    }
    .card-wide {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }
}
.value-item {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.dual-feature-section {
    padding: 4rem 0;
}

.dual-feature-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.image-overlap-container {
    flex: 1 1 50%;
    position: relative;
    min-height: 400px;
}

.dual-feature-text {
    flex: 1 1 50%;
}

.dual-feature-text h2 {
    margin-bottom: 1rem;
}

.dual-feature-text p {
    margin-bottom: 1.5rem;
}

.overlap-image-wrapper {
    position: absolute;
    width: 75%;
    max-width: 350px;
    height: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.overlap-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-one {
    transform: translateX(0) rotate(-8deg);
    z-index: 1;
    top: 0;
    left: 0;
}

.image-two {
    transform: translateX(40%) rotate(8deg);
    z-index: 2;
    top: 60px;
}

.dual-feature-wrapper:hover .image-one {
    transform: scale(1.05) rotate(-3deg);
    z-index: 3;
}

.dual-feature-wrapper:hover .image-two {
    transform: translateX(45%) rotate(8deg);
    z-index: 2;
}

@media (max-width: 768px) {
    .dual-feature-wrapper {
        flex-direction: column; 
        gap: 2rem;
    }

    .image-overlap-container {
        min-height: auto;
        width: 100%;
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 1rem; 
    }

    .overlap-image-wrapper {
        position: relative; 
        transform: none !important; 
        width: 90%;
        height: 250px;
        top: auto;
        left: auto;
    }
}
.hero-cleaning-section {
    padding: 6rem 0;
    text-align: center;
}

.hero-cleaning-content h1 {
    color: var(--dark-blue);
}

.hero-cleaning-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--neutral-gray);
}

.sub-category-showcase {
    padding: 4rem 0;
    background-color: var(--light-gray);
    margin-top: -1px;
}

.sub-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sub-category-card {
    display: block;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.sub-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sub-category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sub-category-card h3 {
    margin: 1.5rem 1rem 0.5rem;
    color: var(--dark-blue);
}

.sub-category-card p {
    margin: 0 1rem 1.5rem;
    color: var(--neutral-gray);
}

.product-spotlight-section {
    padding: 4rem 0;
}

.product-spotlight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.product-spotlight-image img {
    border-radius: 10px;
}

.product-spotlight-text h2 {
    margin-bottom: 1rem;
}

.product-spotlight-text p {
    margin-bottom: 1.5rem;
}

.comparison-table-section {
    background-color: var(--light-gray);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background-color: var(--white);
    color: var(--dark-blue);
}

.comparison-table td {
    background-color: var(--white);
}

.comparison-table .clickable-header {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comparison-table th.highlight, .comparison-table td.highlight {
    background-color: var(--light-blue);
}

.chemicals-grid-section {
    padding: 4rem 0;
}

.chemicals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.chemical-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.chemical-card img {
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.chemical-card h3 {
    color: var(--dark-blue);
}

.chemical-card p {
    color: var(--neutral-gray);
    margin: 0.5rem 0 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.routine-section {
    background: linear-gradient(rgba(3, 4, 94, 0.7), rgba(3, 4, 94, 0.7)), url('images/37.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.routine-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.routine-content-container h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.routine-expandable-text {
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    max-height: 6.5rem;
}

.routine-expandable-text.expanded {
    max-height: 40rem;
}

.routine-guide-section {
    background-color: var(--light-gray);
}

.routine-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-blue);
    color: var(--dark-blue);
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 1rem;
}

.routine-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 550px) {
    .chemicals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .sub-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-spotlight-container {
        flex-direction: row;
        gap: 3rem;
    }
    .product-spotlight-image { flex: 1 0 45%; }
    .product-spotlight-text { flex: 1 1 55%; }
    .routine-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .chemicals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.hero-guides-section {
    background: linear-gradient(rgba(3, 4, 94, 0.5), rgba(3, 4, 94, 0.5)), url('images/38.webp') no-repeat center center/cover;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.hero-guides-content h1 {
    color: var(--white);
}

.hero-guides-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.interactive-hover-section {
    padding: 4rem 0;
}

.interactive-hover-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hover-list-column h2 {
    margin-bottom: 1.5rem;
}

.hover-list {
    list-style: none;
}

.hover-item {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
    .hover-item.active {
        border-color: var(--primary-blue);
        background-color: #f0faff;
    }
}

.hover-item p {
    color: var(--neutral-gray);
    margin-top: 0.5rem;
}

.mobile-hover-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.image-display-box {
    display: none;
}

.filter-section {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--primary-blue);
    background-color: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.guides-list-section {
    padding-top: 4rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.guide-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.guide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-card-content {
    padding: 1.5rem;
}

.guide-card h3 { margin-bottom: 0.5rem; }
.guide-card p { margin-bottom: 1rem; color: var(--neutral-gray); }

.expert-tip-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), url('images/49.webp') no-repeat center center/cover;
}

.expert-tip-wrapper {
    display: flex;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #eee;
}
@media (max-width: 767px) {
    .expert-tip-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        background-color: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}
.expert-tip-icon { color: var(--primary-blue); }
.expert-tip-text h3 { margin-bottom: 0.5rem; }
.expert-tip-text p { margin: 0; }

.troubleshooting-section {
    padding: 4rem 0;
}

.troubleshooting-tool {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.problem-select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.solution-display {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    min-height: 5rem;
}

.dual-shape-section {
    background-color: var(--light-gray);
}

.dual-shape-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.dual-shape-image {
    position: relative;
    width: 90%;
    max-width: 400px;
}

.image-bg-shape {
    display: none;
}

.dual-shape-image img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.dual-shape-text {
    text-align: center;
}

.dual-shape-text h2 { margin-bottom: 1rem; }
.dual-shape-text p { margin-bottom: 1.5rem; }

.toolkit-section { padding: 4rem 0; }
.toolkit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.toolkit-text h2 { margin-bottom: 1.5rem; }
.toolkit-list { list-style: '✔  '; padding-left: 1.5rem; }
.toolkit-list li { margin-bottom: 0.75rem; }
.toolkit-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.toolkit-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 90%;
}
.toolkit-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.final-cta-guides-section {
    background-color: var(--dark-blue);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.final-cta-guides-section h2 { color: var(--white); }
.final-cta-guides-section p { max-width: 600px; margin: 1rem auto 2rem; }

@media (min-width: 768px) {
    .interactive-hover-wrapper {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }
    .mobile-hover-image { display: none; }
    .image-display-box { display: block; height: 450px; }
    .hover-list-column { flex: 1 1 45%; }
    .hover-image-column { flex: 1 1 55%; position: sticky; top: 100px; }
    
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toolkit-wrapper {
        flex-direction: row;
        gap: 3rem;
    }
    .toolkit-text { flex: 1 1 45%; }
    .toolkit-images {
        flex: 1 1 55%;
        position: relative;
        min-height: 350px;
        align-items: initial;
    }
    .toolkit-image-wrapper {
        position: absolute;
        width: 70%;
        height: 280px;
        transition: transform 0.4s ease;
    }
    .image-back {
        top: 0;
        left: 0;
        transform: rotate(-6deg);
    }
    .image-front {
        bottom: 0;
        right: 0;
        transform: rotate(4deg);
    }
    .image-back {
        top: 0;
        left: 0;
        transform: rotate(-6deg);
        z-index: 1; 
    }

    .image-front {
        bottom: 0;
        right: 0;
        transform: rotate(4deg);
        z-index: 2; 
    }

    .toolkit-image-wrapper:hover {
        transform: scale(1.05) rotate(0deg);
        z-index: 3; 
    }
}

@media (min-width: 960px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dual-shape-wrapper {
        flex-direction: row;
        gap: 4rem;
    }
    .dual-shape-image {
        flex: 1 0 45%;
    }
    .dual-shape-text {
        flex: 1 1 55%;
        text-align: left;
    }
    .image-bg-shape {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #e0e0e0;
        border-radius: 12px;
        top: -20px;
        left: -20px;
        z-index: 1;
    }
}
.hero-about-section {
    background: linear-gradient(rgba(3, 4, 94, 0.6), rgba(3, 4, 94, 0.6)), url('images/59.webp') no-repeat center center/cover;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.hero-about-content h1 {
    color: var(--white);
}

.hero-about-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.our-story-section {
    padding: 4rem 0;
}

.our-story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.our-story-text h2 {
    margin-bottom: 1rem;
}

.our-story-image img {
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
}

.values-section {
    padding: 5rem 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 119, 182, 0.85);
    clip-path: polygon(0 0, 100% 10%, 100% 85%, 0 100%)
}

.values-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 5%;
}

.values-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.values-expandable-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-height: 7.5rem;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.values-expandable-text.expanded {
    max-height: 30rem;
}

.values-content .expand-button {
    background: var(--secondary-blue);
    color: var(--dark-blue);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.values-content .expand-button:hover { background-color: var(--white); }

.team-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.team-member h3 { margin-bottom: 0.25rem; }
.team-member .role { color: var(--primary-blue); font-weight: 600; margin-bottom: 0.75rem; }
.team-member .bio { color: var(--neutral-gray); }

.timeline-section { padding: 4rem 0; }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--light-blue);
    top: 0;
    bottom: 0;
    left: 15px;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 3rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    top: 5px;
    left: 8.5px;
    z-index: 1;
}

.timeline-content h3 { margin-bottom: 0.5rem; }

.differentiators-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.differentiators-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
}

.differentiators-list h2 { margin-bottom: 1rem; }
.differentiators-list ul { list-style: '✔  '; padding-left: 1.5rem; }
.differentiators-list li { margin-bottom: 1rem; }
.differentiators-image img { border-radius: 12px; }

.counter-section {
    padding: 5rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
}

.counter-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.counter-number {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--secondary-blue);
}

.counter-item p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.quote-section {
    padding: 4rem 0;
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-text {
    text-align: center;
}

.quote-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-blue);
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.quote-text cite {
    font-weight: 600;
    color: var(--neutral-gray);
}

.final-cta-about-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
}

.final-cta-about-section h2 { color: var(--dark-blue); }

.final-cta-about-section p { max-width: 600px; margin: 1rem auto 2rem; }

@media (min-width: 550px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .our-story-wrapper {
        flex-direction: row;
        gap: 3rem;
    }
    .our-story-text { flex: 1 1 55%; }
    .our-story-image { flex: 1 0 45%; }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .differentiators-wrapper {
        flex-direction: row;
        gap: 3rem;
    }
    .differentiators-list { flex: 1 1 50%; }
    .differentiators-image { flex: 1 1 50%; }

    .counter-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .quote-wrapper {
        flex-direction: row;
        text-align: left;
    }
    .quote-image { flex-shrink: 0; }
    .quote-text { text-align: left; }
}
.hero-support-section {
    padding: 6rem 0;
    text-align: center;
}

.hero-support-content h1 { color: var(--dark-blue); }
.hero-support-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--neutral-gray);
}

.quick-answers-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    margin-top: -1px;
}

.quick-answers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-answer-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.quick-answer-card h3 { margin-bottom: 0.5rem; }

.faq-accordion-section {
    padding: 4rem 0;
}

.photostack-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.photostack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.photostack-content h2 { margin-bottom: 1rem; }
.photostack-content p { margin-bottom: 2rem; }

.photostack-controls {
    display: flex;
    gap: 1rem;
}

.photostack-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.photostack-btn:hover {
    background-color: var(--dark-blue);
}

.photostack-container {
    position: relative;
    min-height: 350px;
}

.stack-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stack-photo.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.stack-photo:nth-of-type(1).active { transform: rotate(-2deg); }
.stack-photo:nth-of-type(2).active { transform: rotate(3deg); }
.stack-photo:nth-of-type(3).active { transform: rotate(1deg); }
.stack-photo:nth-of-type(4).active { transform: rotate(-3deg); }

.guides-cta-section {
    padding: 4rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.guides-cta-wrapper h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.guides-cta-wrapper p {
    max-width: 600px;
    margin: 0 auto 2rem;
}
.guides-cta-section .cta-button:hover {
    background-color: var(--secondary-blue);
    color: var(--dark-blue);
}
.promise-section {
    padding: 4rem 0;
}

.promise-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-wrapper blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-blue);
    text-align: center;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
    margin: 0;
}

.promise-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 250px;
}

.promise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .quick-answers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .photostack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .photostack-container { min-height: 400px; }
    
    .promise-wrapper {
        grid-template-columns: 1fr 2.5fr 1fr;
        gap: 2rem;
    }
    .promise-image-left { order: 1; }
    .promise-wrapper blockquote { order: 2; }
    .promise-image-right { order: 3; }
}
.legal-page-section {
    padding: 4rem 0;
}

.legal-page-section .section-container {
    max-width: 800px;
}

.legal-page-section h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-page-section .last-updated {
    text-align: center;
    color: var(--neutral-gray);
    margin-bottom: 3rem;
}

.legal-page-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 0.5rem;
}

.legal-page-section p, .legal-page-section li {
    line-height: 1.8;
}

.legal-page-section p {
    margin-bottom: 1rem;
}

.legal-page-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page-section li {
    margin-bottom: 0.5rem;
}
.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    background-color: var(--light-gray);
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.ecosystem-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.ecosystem-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.ecosystem-image-column {
    position: relative;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    display: grid; 
}

.ecosystem-image-display {
    position: relative;
    width: 100%;
    height: 100%;
}

.eco-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.eco-image.active {
    opacity: 1;
    visibility: visible;
}

.ecosystem-accordion-column h2 {
    margin-bottom: 1.5rem;
}

.eco-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.eco-accordion-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-blue);
}

.eco-accordion-question span {
    color: var(--secondary-blue);
}

.eco-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.eco-accordion-answer p {
    padding-bottom: 1.5rem;
}

.eco-accordion-item.active .eco-accordion-answer {
    max-height: 20rem;
}

.eco-accordion-item.active .eco-accordion-question {
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .ecosystem-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .ecosystem-image-column {
        min-height: 500px;
    }
}
.testimonial-slider-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem 2rem 2rem; 
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide p {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-style: italic;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-slide cite {
    font-weight: 600;
    color: var(--neutral-gray);
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-controls button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-controls button:hover {
    background-color: var(--dark-blue);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-blue);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-blue);
}
.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem 2rem 2rem; 
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}