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

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #52b788;
    --accent-color: #95d5b2;
    --dark-color: #1b4332;
    --light-color: #d8f3dc;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

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

.header-asymmetric {
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

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

.nav-list a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-asymmetric {
    overflow-x: hidden;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 1;
    padding: 4rem 2rem 4rem 5rem;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

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

.cta-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.intro-block-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 2;
}

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

.intro-text-wide p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-image-small {
    flex: 1;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(3rem);
}

.services-creative {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 4rem 8rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

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

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.benefits-overlap {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.benefits-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

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

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    font-size: 1.125rem;
    color: var(--text-dark);
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.benefits-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

.testimonials-scattered {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.section-title-offset {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-left {
    margin-right: auto;
    max-width: 70%;
}

.testimonial-right {
    margin-left: auto;
    max-width: 70%;
}

.testimonial-center {
    margin: 0 auto;
    max-width: 80%;
}

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

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.cta-floating {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.cta-box-offset {
    max-width: 800px;
    margin: 0 auto 0 10%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
}

.cta-box-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box-offset p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-box-offset .cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box-offset .cta-primary:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

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

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.scientific-references {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}

.scientific-references h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.scientific-references p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 0.75rem;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-asymmetric {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 16px var(--shadow);
    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;
}

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

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

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

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

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

.about-page,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    min-height: 60vh;
}

.about-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.story-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

.about-values {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.about-team {
    padding: 6rem 2rem;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.expertise-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

.about-approach {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.approach-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

.approach-text {
    flex: 1;
}

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

.approach-steps {
    padding-left: 1.5rem;
}

.approach-steps li {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-cta {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem;
    border-radius: 16px;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.services-detailed {
    padding: 4rem 2rem;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

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

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

.service-detail-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

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

.services-form-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

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

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

.contact-content {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

.contact-map-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-map-section p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.thanks-content {
    padding: 6rem 2rem;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-message {
    flex: 1.5;
}

.thanks-message h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message > p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
    margin-top: 1.5rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.legal-section ul,
.legal-section ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 3rem 2rem;
    }

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

    .intro-block-offset,
    .benefits-content-offset,
    .story-content-offset,
    .approach-layout,
    .contact-layout,
    .thanks-content {
        flex-direction: column;
    }

    .intro-image-small {
        transform: none;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        max-width: 100%;
        margin: 0;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }
}

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

    .main-nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .form-wrapper-offset {
        margin: 0 auto;
    }

    .services-header-offset {
        margin-left: 2rem;
    }

    .cta-box-offset {
        margin: 0 auto;
    }
}