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

:root {
    --primary-color: #4a7c59;
    --secondary-color: #8b6f47;
    --accent-color: #c89968;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-cream: #f5f0eb;
    --border-color: #e0e0e0;
}

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

.email-display {
    font-style: normal;
    color: var(--text-dark);
    pointer-events: none;
}

.ad-disclosure {
    background-color: #fff9e6;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-offset {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-mark {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.asymmetric-flow {
    width: 100%;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    position: relative;
    margin-bottom: 4rem;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.3) 100%);
}

.hero-content-float {
    position: relative;
    width: 50%;
    padding: 6rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    z-index: 2;
}

.headline-large {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #b5875a;
    transform: translateY(-2px);
}

.info-block-left {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
}

.content-narrow {
    flex: 1;
    max-width: 550px;
}

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

.content-narrow p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-narrow a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.visual-offset-right {
    flex: 1;
    transform: translateY(30px);
}

.visual-offset-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-asymmetric {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.section-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 3rem;
    transform: skewY(-1deg);
    padding: 2rem;
    background-color: white;
}

.section-header-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transform: skewY(1deg);
}

.section-header-diagonal p {
    color: var(--text-light);
    transform: skewY(1deg);
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 2rem);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-float-1 {
    transform: translateY(-15px);
}

.card-float-2 {
    transform: translateY(15px);
}

.card-float-3 {
    transform: translateY(-10px);
}

.card-float-4 {
    transform: translateY(20px);
}

.card-float-5 {
    transform: translateY(-5px);
}

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

.card-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

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

.select-service:hover {
    background-color: #3d6649;
    transform: translateY(-2px);
}

.booking-section-diagonal {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: skewY(2deg);
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #3d6649;
    transform: translateY(-2px);
}

.trust-block-overlap {
    padding: 4rem 8%;
    max-width: 1200px;
    margin: -2rem auto 4rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.ingredient-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.ingredient-list li:last-child {
    border-bottom: none;
}

.ingredient-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cta-final-offset {
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d6649 100%);
    color: white;
    transform: skewY(1.5deg);
}

.cta-final-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transform: skewY(-1.5deg);
}

.cta-final-offset p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    transform: skewY(-1.5deg);
}

.cta-final-offset .cta-secondary {
    background-color: white;
    color: var(--primary-color);
    transform: skewY(-1.5deg);
}

.cta-final-offset .cta-secondary:hover {
    background-color: var(--bg-light);
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 4rem 5% 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-block h3,
.footer-block h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-block ul li {
    margin-bottom: 0.6rem;
}

.footer-block a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--accent-color);
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-references h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.6rem;
}

.footer-references a {
    color: #cccccc;
    text-decoration: none;
}

.footer-references a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #1f1f1f;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #3d6649;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

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

.page-hero-small {
    text-align: center;
    padding: 4rem 5% 3rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
}

.page-hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.service-item-large {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

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

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.booking-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.about-hero-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

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

.subtitle-large {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-hero-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-section-diagonal {
    padding: 4rem 8%;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.values-asymmetric {
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.values-asymmetric h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-block {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.block-1 {
    transform: translateY(-10px);
}

.block-2 {
    transform: translateY(10px);
}

.block-3 {
    transform: translateY(-5px);
}

.block-4 {
    transform: translateY(15px);
}

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

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.approach-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.approach-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-block {
    padding: 4rem 8%;
    max-width: 1000px;
    margin: 0 auto 4rem;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.expertise-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.expertise-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.commitment-diagonal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.commitment-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.commitment-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 4rem 5%;
}

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

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

.contact-hero {
    text-align: center;
    padding: 4rem 5% 3rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-info-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-block-main {
    flex: 1;
}

.contact-block-main h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 0.8rem 0;
    color: var(--text-light);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-note-offset {
    flex: 1;
    background-color: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 8px;
    transform: translateY(20px);
}

.contact-note-offset h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-note-offset p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.location-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-page {
    padding: 3rem 5%;
}

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

.thanks-icon {
    margin: 2rem auto;
}

.thanks-content-center h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-message {
    text-align: left;
    margin: 2rem 0;
}

.thanks-message p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.booking-summary {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.booking-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

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

.next-steps-intro {
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.next-steps {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.additional-info-offset {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
}

.additional-info-offset h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 3rem 5%;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

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

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-offset {
        flex-direction: column;
        min-height: 500px;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-content-float {
        width: 100%;
        padding: 2rem 5%;
    }

    .headline-large {
        font-size: 2rem;
    }

    .info-block-left {
        flex-direction: column;
    }

    .visual-offset-right {
        transform: none;
    }

    .service-card {
        width: 100%;
    }

    .card-float-1,
    .card-float-2,
    .card-float-3,
    .card-float-4,
    .card-float-5 {
        transform: none;
    }

    .service-item-large {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        flex-direction: column;
    }

    .contact-info-asymmetric {
        flex-direction: column;
    }

    .contact-note-offset {
        transform: none;
    }

    .approach-section-split {
        flex-direction: column;
    }

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