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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97b498;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f9f9f9;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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(--bg-light);
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
}

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

.btn-primary:hover {
    background-color: #1e4520;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 90%;
    width: auto;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.asymmetric-hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-block-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background-color: var(--bg-gray);
}

.hero-content-offset {
    max-width: 600px;
    margin-left: auto;
    padding-right: 3rem;
}

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

.hero-underline {
    width: 120px;
    height: 6px;
    background-color: var(--accent-color);
    margin: 2rem 0;
}

.hero-block-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay-box {
    position: absolute;
    bottom: 3rem;
    left: -2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.section-offset-intro {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.intro-left-narrow {
    flex: 0 0 300px;
}

.intro-left-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    position: sticky;
    top: 150px;
}

.intro-right-wide {
    flex: 1;
}

.intro-large {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.cta-link-arrow {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    transition: var(--transition);
}

.cta-link-arrow:hover {
    transform: translateX(10px);
    color: var(--accent-color);
}

.overlapping-cards {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 500px;
}

.card-layer {
    position: absolute;
}

.card-back {
    left: 10%;
    top: 0;
    width: 45%;
    opacity: 0.7;
    transform: rotate(-3deg);
}

.card-back img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-front {
    right: 5%;
    top: 10%;
    width: 50%;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
}

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

.card-content-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-irregular-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.split-image-irregular {
    flex: 0 0 45%;
    position: relative;
}

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

.split-content-irregular {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: var(--bg-gray);
}

.content-box-floating {
    max-width: 550px;
}

.label-small {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.content-box-floating p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.inline-cta {
    margin-top: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.services-grid-offset {
    padding: 8rem 2rem;
    background-color: var(--bg-light);
}

.services-header-asymmetric {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 15%;
}

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

.services-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

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

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.service-card-tall {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
}

.service-card-wide {
    flex: 1 1 calc(35% - 2rem);
    min-width: 280px;
}

.service-card-offset {
    flex: 1 1 calc(30% - 2rem);
    min-width: 260px;
    margin-top: 3rem;
}

.service-card-narrow {
    flex: 1 1 calc(28% - 2rem);
    min-width: 240px;
}

.service-card-elevated {
    flex: 1 1 calc(32% - 2rem);
    min-width: 270px;
    margin-top: -2rem;
}

.service-card-standard {
    flex: 1 1 calc(30% - 2rem);
    min-width: 260px;
}

.service-card-inner {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card-inner p {
    margin-bottom: auto;
    line-height: 1.6;
    color: #555;
}

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

.btn-select-service {
    padding: 0.9rem 1.5rem;
    background-color: var(--text-dark);
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: auto;
}

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

.testimonial-offset {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-box {
    max-width: 600px;
    padding: 2.5rem;
    background-color: var(--bg-gray);
    border-left: 5px solid var(--accent-color);
}

.testimonial-box-right {
    margin-left: auto;
    border-left: none;
    border-right: 5px solid var(--primary-color);
}

.testimonial-quote p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-section-creative {
    padding: 8rem 2rem;
    background-color: var(--bg-dark);
}

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

.form-header-block {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 6px solid var(--accent-color);
}

.form-header-block h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.form-header-block p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.contact-form-asymmetric {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1e4520;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.final-cta-offset {
    padding: 8rem 2rem;
    background-color: var(--bg-gray);
}

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

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

.btn-large-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.btn-large-cta:hover {
    background-color: #1e4520;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
}

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

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

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

.page-hero-offset {
    padding: 12rem 2rem 6rem;
    background-color: var(--bg-gray);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.about-intro-split {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    flex: 1;
}

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

.about-text-block p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.about-image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-box {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-box-offset-1 {
    transform: translateY(-2rem);
}

.value-box-offset-2 {
    transform: translateY(2rem);
}

.value-box-offset-3 {
    transform: translateY(0);
}

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

.value-box p {
    line-height: 1.7;
    color: #555;
}

.story-section-irregular {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content-offset {
    flex: 1.2;
}

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

.story-content-offset p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-image-offset {
    flex: 0.8;
}

.story-image-offset img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.cta-section-about {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content-box h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-detail-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.service-detail-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-detail-content {
    padding: 2rem;
}

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

.service-detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #555;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #888;
}

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

.process-section-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.process-steps-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.process-step-1 {
    transform: translateY(0);
}

.process-step-2 {
    transform: translateY(-1rem);
}

.process-step-3 {
    transform: translateY(1rem);
}

.process-step-4 {
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    line-height: 1.6;
    color: #555;
}

.contact-info-asymmetric {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
}

.contact-block-left {
    background-color: var(--bg-gray);
    transform: translateY(-2rem);
}

.contact-block-center {
    transform: translateY(2rem);
}

.contact-block-right {
    background-color: var(--bg-gray);
    transform: translateY(0);
}

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

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

.contact-detail p {
    line-height: 1.7;
    color: #555;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section-offset {
    padding: 4rem 2rem;
    background-color: var(--bg-gray);
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background-color: #ddd;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-overlay p {
    font-weight: 600;
    color: var(--text-dark);
}

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

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-section {
    padding: 12rem 2rem 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-info {
    padding: 2rem;
    background-color: var(--bg-gray);
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

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

.thanks-next-steps ul {
    list-style: disc;
    padding-left: 2rem;
}

.thanks-next-steps li {
    padding: 0.5rem 0;
    line-height: 1.6;
    color: #555;
}

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

.legal-page {
    padding: 12rem 2rem 4rem;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

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

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

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.legal-container ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    padding: 0.3rem 0;
    line-height: 1.6;
    color: #555;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

    .hero-block-left,
    .hero-block-right {
        flex: 1;
        min-height: 50vh;
    }

    .hero-content-offset {
        margin-left: 0;
        padding-right: 0;
    }

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

    .section-offset-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-left-narrow {
        flex: 1;
    }

    .intro-left-narrow h2 {
        position: static;
    }

    .overlapping-cards {
        min-height: 700px;
    }

    .card-back,
    .card-front {
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 2rem;
    }

    .section-irregular-split,
    .about-intro-split,
    .story-section-irregular {
        flex-direction: column;
    }

    .split-image-irregular,
    .split-content-irregular {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        width: 90%;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .intro-large {
        font-size: 1.2rem;
    }

    .services-header-asymmetric {
        padding-left: 0;
    }

    .services-header-asymmetric h2 {
        font-size: 2.2rem;
    }

    .service-card-tall,
    .service-card-wide,
    .service-card-offset,
    .service-card-narrow,
    .service-card-elevated,
    .service-card-standard {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .testimonial-box,
    .testimonial-box-right {
        margin-left: 0;
    }

    .contact-form-asymmetric {
        padding: 2rem;
    }

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

    .values-asymmetric .value-box {
        transform: translateY(0) !important;
    }

    .process-steps-irregular .process-step {
        transform: translateY(0) !important;
    }

    .contact-info-asymmetric .contact-info-block {
        transform: translateY(0) !important;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .services-header-asymmetric h2 {
        font-size: 1.8rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}