:root {
    --primary-color: #193E6E;
    --white: #FFFFFF;
    --accent-yellow: #FFEA2E;
    --accent-pink: #E91E63;
    --accent-green: #34A853;
    --accent-purple: #7C2187;
    --bg-light: #FFFFFF;
    --bg-secondary: #F4F6F9;
    --text-dark: #2B3D51;
    --text-muted: #647B95;
    --gradient-primary: linear-gradient(135deg, #193E6E 0%, #2A5A9C 100%);
    --shadow-sm: 0 4px 6px -1px rgba(25, 62, 110, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(25, 62, 110, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(25, 62, 110, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 9999px;
    --radius-circle: 50%;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
}

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

.text-left {
    text-align: left;
}

.position-relative {
    position: relative;
}

.section-padding {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--bg-secondary);
}

.section-white {
    background-color: var(--white);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-large {
    border-radius: var(--radius-xl);
}

.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
}

.badge-pink {
    background-color: var(--accent-pink);
    color: var(--white);
}

.badge-green {
    background-color: var(--accent-green);
    color: var(--white);
}

.badge-purple {
    background-color: var(--accent-purple);
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(25, 62, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 62, 110, 0.4);
    color: var(--white);
}

.btn-warning {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(255, 234, 46, 0.4);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 234, 46, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap var(--transition-fast);
}

.btn-text:hover {
    gap: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-extra-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 1. HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--accent-pink);
    border-radius: var(--radius-pill);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* 2. HERO CAROUSEL */
.hero {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 629px;
    max-height: 85vh;
}

.banner-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(25, 62, 110, 0.8) 0%, rgba(25, 62, 110, 0.2) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 600px;
    padding-right: 2rem;
    text-align: left;
    margin-left: 5%;
    /* Pushes text close to the left arrow */
}

.banner-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    backdrop-filter: blur(4px);
    transition: background var(--transition-fast);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-pink);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-yellow);
    opacity: 1;
    transform: scale(1.3);
}

/* 3. ESPECIALIDADES (Grid) */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-card:nth-child(1):hover::before {
    background-color: var(--accent-yellow);
}

.specialty-card:nth-child(2):hover::before {
    background-color: var(--accent-pink);
}

.specialty-card:nth-child(3):hover::before {
    background-color: var(--accent-green);
}

.specialty-card:nth-child(4):hover::before {
    background-color: var(--accent-purple);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    transition: transform var(--transition-normal);
}

.specialty-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.specialty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    font-weight: 700;
    margin-top: 1rem;
    align-items: center;
    gap: 0.25rem;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* 4. SERVIÇOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: transform var(--transition-smooth);
}

.service-item:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.service-content h4 {
    font-size: 1.25rem;
}

/* 5. POR QUE ESCOLHER (Sobre) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.img-wrapper-main {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 10;
}

.floating-badge i {
    font-size: 1.5rem;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.features-list h5 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.features-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 6. EQUIPE */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition-normal);
    border: 1px solid var(--bg-secondary);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem auto;
    border-radius: var(--radius-circle);
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-color) 100%);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-circle);
    border: 4px solid var(--white);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

/* 7. DEPOIMENTOS */
.testimonials-bg {
    background-color: #FAFAFA;
}

.testimonials-swiper {
    padding-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.5s forwards 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: left;
    height: auto;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.author-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* 8. FAQ (Accordion) */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--bg-secondary);
    transition: all var(--transition-fast);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);
    font-family: inherit;
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--accent-pink);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
    padding: 0 1.5rem;
    background-color: var(--bg-secondary);
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    margin-bottom: 0;
}

/* 9. CTA FINAL */
.cta-final {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 10. FOOTER */
.footer {
    background-color: #0d213a;
    color: var(--white);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-circle);
    transition: all var(--transition-fast);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* RESPONSIVO / MOBILE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .img-wrapper-main {
        max-width: 600px;
        margin: 0 auto;
    }

    .floating-badge {
        right: 1rem;
        bottom: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .banner-content h2 {
        font-size: 2.5rem;
    }

    .banner-content {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 6rem 2rem 2rem 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.125rem;
        font-weight: 700;
        width: 100%;
        display: block;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(25, 62, 110, 0.5);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .btn-header {
        display: none;
    }

    .header-container {
        position: relative;
        justify-content: center;
    }

    .menu-toggle {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-swiper {
        height: 500px;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-content {
        margin-left: 0;
    }

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: 450px;
    }

    .banner-content h2 {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* 11. RESPONSIVE PAGE BANNERS */
.banner-wrapper {
    background-color: var(--bg-secondary);
}

.banner-image {
    padding: 2rem 1.5rem;
    text-align: center;

    /* Safely isolating rules to guarantee proportion and alignments */
    background-image: var(--dynamic-bg) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;

    /* 100% of vertical size of the image relative to proportions + cap at 70vh */
    width: 100%;
    aspect-ratio: 1.25;
    /* Good middle ground to avoid extreme cuts */
    max-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Ensure padding top pushes text if needed when the image is small on mobile */
@media (max-width: 480px) {
    .banner-image {
        padding-top: 6rem;
        /* space for header */
        aspect-ratio: 1.1;
        /* slightly taller look for phone reading */
    }
}

.banner-image h1 {
    color: #fff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
    margin-bottom: 0;
    font-size: 2.2rem;
}

.banner-text {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
    text-align: center;
}

.banner-text p {
    color: var(--text-dark) !important;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-shadow: none !important;
}

@media (min-width: 768px) {
    .banner-wrapper {
        /* Fixed 70% of screen height without ratio loss */
        height: 70vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 80px;

        background-image: var(--dynamic-bg) !important;
        background-size: auto 100% !important;
        /* Fixed vertical height to not crop, repeat horizontally */
        background-position: center top !important;
        background-repeat: repeat-x !important;
    }

    .banner-image {
        background: none !important;
        padding: 0 !important;
        height: auto;
        min-height: auto;
        max-height: none;
        aspect-ratio: auto;
        display: block;
    }

    .banner-image h1 {
        margin-bottom: 1rem;
        font-size: 3rem;
    }

    .banner-text {
        padding: 0 1.5rem !important;
    }

    .banner-text p {
        color: #f8fafc !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
        font-size: 1.2rem;
    }
}