/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #8B6914;
    --color-primary-dark: #6B5210;
    --color-secondary: #C9A227;
    --color-accent: #D4A574;
    --color-bg: #FFFEF9;
    --color-bg-alt: #F5F0E6;
    --color-bg-warm: #FAF6ED;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-heading: #2C2416;
    --color-white: #FFFFFF;
    --color-border: #E5DED0;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(139, 105, 20, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 105, 20, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 105, 20, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

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

a:hover {
    color: var(--color-primary-dark);
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

.section {
    padding: 3rem 0;
}

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

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

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

.section__subtitle {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__icon {
    width: 40px;
    height: 40px;
}

.logo__text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    color: var(--color-heading);
    font-weight: 700;
}

.nav {
    display: none;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

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

.nav__link:hover {
    color: var(--color-primary);
}

/* Mobile Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-heading);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav__list {
    list-style: none;
}

.mobile-nav__link {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav__link:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-alt);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--color-bg-warm);
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero__text {
    text-align: center;
}

.hero__title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.hero__description {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__illustration {
    width: 100%;
    max-width: 400px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

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

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

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

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

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Cards */
.cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card__text {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.card__price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 1rem;
}

/* Features */
.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
}

.feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
}

.feature__title {
    font-size: 1.125rem;
}

.feature__text {
    color: var(--color-text-light);
}

/* Alternating Sections */
.alternating {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.alternating__visual {
    display: flex;
    justify-content: center;
}

.alternating__visual svg {
    max-width: 320px;
}

.alternating__content {
    text-align: center;
}

/* Statistics */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    flex: 1 1 140px;
    max-width: 200px;
}

.stat__number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat__label {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--color-accent);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.testimonial__author {
    font-weight: 600;
    color: var(--color-heading);
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

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

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq__answer p {
    color: var(--color-text-light);
}

/* Process Steps */
.process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step__number {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step__content {
    flex: 1;
}

.step__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step__text {
    color: var(--color-text-light);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item__icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.trust-item__text {
    font-weight: 500;
    color: var(--color-text);
}

/* Industries / Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.category:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.category__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
}

.category__name {
    font-weight: 600;
    color: var(--color-heading);
}

/* Values */
.values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.value__content {
    flex: 1;
}

.value__title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
}

.value__text {
    color: var(--color-text-light);
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 4rem 1.5rem;
}

.quote__text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-heading);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.quote__author {
    color: var(--color-text-light);
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3.5rem 1.5rem;
}

.cta__title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__text {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn--secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-block__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-block__icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-block__text {
    color: var(--color-text-light);
}

/* Highlighted Panel */
.panel {
    background-color: var(--color-bg-warm);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}

.panel__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.panel__text {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Service Comparison */
.comparison {
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison__table th,
.comparison__table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison__table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-heading);
}

.comparison__check {
    color: var(--color-primary);
    font-weight: 700;
}

/* Milestones */
.milestones {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.milestone__year {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.milestone__content {
    flex: 1;
}

.milestone__title {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.milestone__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Team */
.team {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.team-member__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.team-member__name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-member__role {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.team-member__bio {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* Page Header */
.page-header {
    background-color: var(--color-bg-warm);
    padding: 3rem 0;
    text-align: center;
}

.page-header__title {
    margin-bottom: 0.75rem;
}

.page-header__subtitle {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-heading);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer__grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__col-title {
    font-size: 1.0625rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer__links {
    list-style: none;
}

.footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.375rem 0;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--color-white);
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-heading);
    color: var(--color-white);
    padding: 1.25rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner__text {
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--color-accent);
}

.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-banner__btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.cookie-banner__btn--accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
    background-color: var(--color-secondary);
}

.cookie-banner__btn--settings {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--settings:hover {
    border-color: var(--color-white);
}

.cookie-banner__btn--decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--decline:hover {
    color: var(--color-white);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal__content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.cookie-modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal__title {
    font-size: 1.25rem;
    margin: 0;
}

.cookie-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-light);
}

.cookie-modal__close:hover {
    color: var(--color-heading);
}

.cookie-modal__body {
    padding: 1.5rem;
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option__title {
    font-weight: 600;
    color: var(--color-heading);
}

.cookie-option__text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Toggle Switch */
.toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle__input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-border);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle__slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle__input:checked + .toggle__slider {
    background-color: var(--color-primary);
}

.toggle__input:checked + .toggle__slider::before {
    transform: translateX(22px);
}

.toggle__input:disabled + .toggle__slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 5rem 0;
}

.thank-you__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.thank-you__title {
    font-size: 2rem;
}

.thank-you__text {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* Desktop Styles */
@media (min-width: 768px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: 5rem 0;
    }

    .nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero__content {
        flex-direction: row;
        align-items: center;
    }

    .hero__text {
        text-align: left;
        flex: 1;
    }

    .hero__title {
        font-size: 2.75rem;
    }

    .hero__visual {
        flex: 1;
    }

    .cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cards .card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .features .feature {
        flex: 1 1 calc(33.333% - 1.5rem);
        max-width: 300px;
    }

    .alternating {
        flex-direction: row;
        align-items: center;
    }

    .alternating--reverse {
        flex-direction: row-reverse;
    }

    .alternating__visual,
    .alternating__content {
        flex: 1;
    }

    .alternating__content {
        text-align: left;
    }

    .testimonials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonials .testimonial {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info .contact-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .team {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team .team-member {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .footer__grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__grid > div {
        flex: 1;
    }

    .cookie-banner__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-banner__text {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .cards .card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .stat {
        flex: 1 1 auto;
    }
}
