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

:root {
    --primary-color: #2d5f4f;
    --secondary-color: #7a9d8a;
    --accent-color: #e8a55c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #d4d9d4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    height: 85vh;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #234438;
    transform: translateY(-2px);
}

.cta-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.3rem 3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary-large:hover {
    background: #234438;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #d89447;
}

.intro-centered {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.intro-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.split-reverse {
    display: flex;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 4rem 6%;
}

.split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-highlight {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.services-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
}

.select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.select-service:hover {
    background: #234438;
}

.view-all-services {
    text-align: center;
    margin-top: 2rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #234438;
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.split-content-focus {
    display: flex;
    align-items: stretch;
}

.split-left-content {
    flex: 1;
    padding: 4rem 6%;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-left-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.split-right-content {
    flex: 1;
}

.split-right-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 5%;
    background: var(--bg-white);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    max-width: 220px;
}

.trust-item h4 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-section-centered {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section-centered p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.form-section-split {
    display: flex;
    padding: 6rem 5%;
    background: var(--bg-white);
    gap: 3rem;
}

.form-info {
    flex: 1;
    padding-right: 2rem;
}

.form-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
    padding-left: 0;
}

.form-benefits li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.form-container {
    flex: 1;
}

.booking-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234438;
}

.final-trust {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.final-trust p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.footer-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background: var(--text-dark);
    color: var(--bg-white);
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    margin-bottom: 0.7rem;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #234438;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    height: 70vh;
}

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

.story-content {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.split-image-focus {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--bg-light);
}

.split-content-block {
    flex: 1;
    padding: 2rem 6%;
}

.split-content-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-content-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.split-image-block {
    flex: 1;
}

.split-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.values-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 240px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.team-highlight {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-detail {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.facility-section-split {
    display: flex;
    align-items: center;
    background: var(--bg-white);
}

.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.facility-content {
    flex: 1;
    padding: 4rem 6%;
}

.facility-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.facility-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.commitment-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.commitment-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.services-hero {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-full {
    padding: 4rem 5%;
    background: var(--bg-white);
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 8px;
    align-items: center;
}

.service-detail-content {
    flex: 3;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.service-features span {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-detail-price {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.booking-prompt-section {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.booking-prompt-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-prompt-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-section-centered {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-hero {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-split-info {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    background: var(--bg-white);
    max-width: 1100px;
    margin: 0 auto;
}

.contact-column {
    flex: 1;
}

.contact-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.contact-column p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-email-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.email-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.email-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.email-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
    transition: color 0.3s;
}

.email-link:hover {
    color: #234438;
}

.contact-directions {
    padding: 5rem 5%;
    background: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.contact-directions h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.directions-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.contact-cta-section {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
    color: var(--bg-white);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
}

.thanks-details {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.thanks-info {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
}

.next-steps {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-service-info {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.service-reminder {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.service-reminder h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.service-reminder p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-reminder a {
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-additional {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.thanks-additional h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.additional-links {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.link-block {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.link-block h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.link-block p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.legal-hero {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-hero p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-content {
    padding: 4rem 5%;
    background: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-section a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split,
    .split-reverse,
    .split-content-focus,
    .split-image-focus,
    .facility-section-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .split-left-content,
    .split-content-block,
    .facility-content,
    .hero-content-left {
        padding: 3rem 5%;
    }

    .hero-left h1,
    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-right,
    .hero-image-right {
        height: 50vh;
    }

    .services-grid,
    .values-grid,
    .next-steps,
    .additional-links {
        flex-direction: column;
    }

    .form-section-split,
    .contact-split-info {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-indicators {
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }
}