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

:root {
    --primary-color: #4A7C59;
    --secondary-color: #2C4A3A;
    --accent-color: #7BA98A;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6A6A6A;
    --background-light: #F8F9FA;
    --background-offset: #F2F4F3;
    --border-color: #E0E4E3;
    --white: #FFFFFF;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
}

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

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

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

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

/* Header - Asymmetric */
.header-asymmetric {
    padding: 20px 40px;
    position: relative;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.nav-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hero - Asymmetric */
.hero-asymmetric {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    position: relative;
    margin-bottom: 100px;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
    position: relative;
    margin-top: 40px;
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-left: -60px;
    margin-top: -20px;
    background-color: var(--background-offset);
}

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

.hero-asymmetric h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

.hero-asymmetric p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 36px;
}

/* Buttons and CTAs */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    margin-top: 16px;
}

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

/* Intro Section - Staggered */
.intro-staggered {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto 120px;
}

.intro-text-block {
    flex: 1;
    padding-right: 40px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-image-offset {
    flex: 0 0 500px;
    position: relative;
    margin-top: -60px;
    background-color: var(--background-offset);
}

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

/* Services Preview - Irregular Grid */
.services-preview {
    padding: 80px 60px;
    background-color: var(--background-light);
    margin-bottom: 100px;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 20px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-header-left p {
    font-size: 20px;
    color: var(--text-medium);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-large {
    flex: 1 1 calc(60% - 20px);
    margin-top: 0;
}

.service-card-offset {
    flex: 1 1 calc(40% - 20px);
    margin-top: 40px;
}

.service-card-small {
    flex: 1 1 calc(50% - 20px);
    margin-top: -40px;
}

.service-card-wide {
    flex: 1 1 calc(55% - 20px);
    margin-top: 20px;
}

.service-card-elevated {
    flex: 1 1 calc(45% - 20px);
    margin-top: -30px;
}

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

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.cta-inline {
    max-width: 1400px;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 20px;
}

.cta-inline p {
    font-size: 18px;
    color: var(--text-medium);
}

/* Trust Section - Diagonal */
.trust-section-diagonal {
    padding: 100px 80px;
    background-color: var(--background-offset);
    position: relative;
    margin-bottom: 100px;
}

.trust-content-block {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-block h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.trust-points-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.trust-point {
    flex: 1 1 300px;
    position: relative;
}

.trust-point-offset {
    margin-top: 40px;
}

.trust-point-elevated {
    margin-top: -20px;
}

.trust-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Testimonials - Asymmetric */
.testimonials-asymmetric {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.testimonials-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    text-align: center;
}

.testimonials-offset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.testimonial {
    flex: 1 1 300px;
    padding: 36px;
    background-color: var(--background-light);
    position: relative;
}

.testimonial-left {
    margin-left: 0;
    margin-top: 0;
}

.testimonial-right-elevated {
    margin-left: auto;
    margin-top: -40px;
    max-width: 400px;
}

.testimonial-center-low {
    margin: 40px auto 0;
    max-width: 450px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Form Section - Offset */
.form-section-offset {
    padding: 100px 80px;
    background-color: var(--background-light);
    margin-bottom: 80px;
}

.form-container-diagonal {
    max-width: 700px;
    margin: 0 0 0 auto;
    padding: 60px;
    background-color: var(--white);
    position: relative;
    margin-right: 10%;
}

.form-section-diagonal {
    padding: 100px 80px;
    margin-bottom: 80px;
}

.form-container-offset-left {
    max-width: 700px;
    margin: 0 auto 0 10%;
    padding: 60px;
    background-color: var(--background-light);
}

.form-container-diagonal h2,
.form-container-offset-left h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.form-container-diagonal p,
.form-container-offset-left p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    font-size: 16px;
    align-self: flex-start;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 80px;
    background-color: var(--background-offset);
    margin-bottom: 80px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--white);
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
}

.disclaimer-content strong {
    color: var(--text-dark);
}

/* Footer - Irregular */
.footer-irregular {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1 1 250px;
    position: relative;
}

.footer-block-elevated {
    margin-top: 0;
}

.footer-block-offset {
    margin-top: 20px;
}

.footer-block-low {
    margin-top: 40px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-block ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Page Hero - Offset */
.page-hero-offset {
    padding: 100px 80px 60px;
    background-color: var(--background-light);
    margin-bottom: 80px;
}

.page-hero-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    max-width: 800px;
}

.page-hero-offset p {
    font-size: 22px;
    color: var(--text-medium);
    max-width: 700px;
}

.hero-text-diagonal {
    max-width: 900px;
    margin: 0 0 0 10%;
}

.hero-text-diagonal h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-text-diagonal p {
    font-size: 22px;
    color: var(--text-medium);
}

.page-hero-offset-left {
    padding: 100px 80px 60px 120px;
    background-color: var(--background-light);
    margin-bottom: 80px;
}

.page-hero-offset-left h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-hero-offset-left p {
    font-size: 22px;
    color: var(--text-medium);
    max-width: 700px;
}

/* About Page - Asymmetric Content */
.about-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 100px;
}

.content-block-elevated {
    max-width: 800px;
    margin: 0 0 80px 0;
}

.content-block-elevated h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-block-elevated p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.content-image-offset {
    width: 70%;
    margin: 0 0 80px auto;
    background-color: var(--background-offset);
}

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

.content-block-wide {
    max-width: 1000px;
    margin: 0 auto 100px;
}

.content-block-wide h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-block-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.timeline-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 100px;
}

.timeline-item {
    flex: 1 1 300px;
    padding: 28px;
    background-color: var(--background-light);
    position: relative;
}

.timeline-left {
    margin-top: 0;
}

.timeline-right-elevated {
    margin-top: -40px;
}

.timeline-left-low {
    margin-top: 40px;
}

.timeline-right {
    margin-top: 20px;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.content-block-offset {
    max-width: 700px;
    margin: 0 0 60px 15%;
}

.content-block-offset h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-block-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.principles-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 100px;
}

.principle-card {
    flex: 1 1 320px;
    padding: 36px;
    background-color: var(--background-light);
    position: relative;
}

.principle-elevated {
    margin-top: 0;
}

.principle-offset-right {
    margin-top: 50px;
}

.principle-low-center {
    margin-top: 30px;
}

.principle-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.principle-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.content-block-diagonal {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    min-height: 500px;
}

.content-block-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 30%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    margin: 40px;
}

.content-overlay h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.content-overlay p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.content-block-full {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block-full h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-block-full p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* CTA Section - Offset */
.cta-section-offset {
    padding: 100px 80px;
    background-color: var(--primary-color);
    margin-bottom: 0;
}

.cta-content-diagonal {
    max-width: 800px;
    margin: 0 0 0 10%;
    color: var(--white);
}

.cta-content-diagonal h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content-diagonal p {
    font-size: 20px;
    margin-bottom: 36px;
}

.cta-buttons-scattered {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cta-buttons-scattered .btn-primary:hover {
    background-color: var(--background-light);
}

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

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

.cta-section-diagonal {
    padding: 100px 80px;
    background-color: var(--background-offset);
    margin-bottom: 0;
}

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

.cta-content-offset-left h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-content-offset-left p {
    font-size: 20px;
    margin-bottom: 36px;
    color: var(--text-medium);
}

/* Services Page - Detailed */
.page-hero-diagonal {
    padding: 100px 80px;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 54px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.hero-image-right-elevated {
    flex: 0 0 500px;
    margin-top: -40px;
    background-color: var(--background-offset);
}

.hero-image-right-elevated img {
    width: 100%;
    height: auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 100px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.service-offset-right .service-content {
    order: 1;
    flex: 1;
}

.service-offset-right .service-image-diagonal {
    order: 2;
    flex: 0 0 500px;
    margin-top: 40px;
    background-color: var(--background-offset);
}

.service-offset-left .service-image-elevated {
    order: 1;
    flex: 0 0 500px;
    margin-top: -40px;
    background-color: var(--background-offset);
}

.service-offset-left .service-content {
    order: 2;
    flex: 1;
}

.service-offset-center {
    flex-direction: column;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-offset-center .service-content {
    order: 1;
}

.service-offset-center .service-image-offset-low {
    order: 2;
    width: 80%;
    margin: 40px 0 0 auto;
    background-color: var(--background-offset);
}

.service-offset-right-elevated .service-image-diagonal-left {
    order: 1;
    flex: 0 0 500px;
    margin-top: 20px;
    background-color: var(--background-offset);
}

.service-offset-right-elevated .service-content {
    order: 2;
    flex: 1;
}

.service-offset-left-low .service-content {
    order: 1;
    flex: 1;
}

.service-offset-left-low .service-image-elevated-right {
    order: 2;
    flex: 0 0 500px;
    margin-top: 60px;
    background-color: var(--background-offset);
}

.service-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0 24px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--secondary-color);
}

.service-list {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.service-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-image-diagonal img,
.service-image-elevated img,
.service-image-offset-low img,
.service-image-diagonal-left img,
.service-image-elevated-right img {
    width: 100%;
    height: auto;
}

.service-notes-section {
    background-color: var(--background-offset);
    padding: 80px;
    margin-bottom: 100px;
}

.notes-content-offset {
    max-width: 900px;
    margin: 0 0 0 10%;
}

.notes-content-offset h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.notes-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 80px;
}

.contact-info-elevated {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-block {
    flex: 1 1 300px;
}

.contact-block-diagonal {
    margin-top: 0;
}

.contact-block-offset-right {
    margin-top: 40px;
}

.contact-block-low-center {
    margin-top: 60px;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-detail {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.contact-note {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.hours-row.hours-closed {
    color: var(--text-light);
}

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

.time {
    color: var(--text-medium);
}

.contact-image-section {
    width: 100%;
    height: 400px;
    margin-bottom: 80px;
    background-color: var(--background-offset);
}

.contact-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.info-block {
    flex: 1 1 300px;
}

.info-block-offset {
    margin-top: 0;
}

.info-block-elevated-right {
    margin-top: -40px;
}

.info-block-low {
    margin-top: 40px;
}

.info-block h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

/* Thanks Page */
.thanks-section-asymmetric {
    padding: 80px;
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 100px;
}

.thanks-content-diagonal {
    flex: 1;
}

.thanks-icon-offset {
    margin-bottom: 40px;
    margin-left: 40px;
}

.thanks-content-diagonal h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.thanks-message {
    margin-bottom: 60px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-confirmation-block {
    padding: 24px;
    background-color: var(--background-light);
    margin: 32px 0;
}

.service-confirmation-block strong {
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.steps-scattered {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background-color: var(--background-light);
}

.step-elevated {
    margin-left: 0;
}

.step-offset-right {
    margin-left: 60px;
}

.step-low-center {
    margin-left: 30px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-image-section {
    flex: 0 0 450px;
    margin-top: 80px;
    background-color: var(--background-offset);
}

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

.thanks-additional-info {
    padding: 80px;
    background-color: var(--background-offset);
    margin-bottom: 0;
}

.info-content-offset {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.info-content-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.info-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Legal Pages */
.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 24px;
    margin: 28px 0 16px;
    color: var(--secondary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
        margin-top: 0;
    }

    .hero-image-diagonal {
        margin-left: 0;
        margin-top: 0;
        min-height: 400px;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image-offset {
        flex: 1;
        margin-top: 0;
    }

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

    .service-offset-right .service-content,
    .service-offset-left .service-content,
    .service-offset-right-elevated .service-content,
    .service-offset-left-low .service-content {
        order: 1;
    }

    .service-offset-right .service-image-diagonal,
    .service-offset-left .service-image-elevated,
    .service-offset-right-elevated .service-image-diagonal-left,
    .service-offset-left-low .service-image-elevated-right {
        order: 2;
        margin-top: 40px;
        flex: 1;
    }

    .thanks-section-asymmetric {
        flex-direction: column;
    }

    .thanks-image-section {
        flex: 1;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .header-asymmetric {
        padding: 20px;
    }

    .nav-offset {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric h1 {
        font-size: 38px;
    }

    .hero-asymmetric p {
        font-size: 18px;
    }

    .intro-staggered,
    .services-preview,
    .trust-section-diagonal,
    .testimonials-asymmetric,
    .form-section-offset,
    .disclaimer-section {
        padding: 40px 20px;
    }

    .section-header-left h2 {
        font-size: 36px;
    }

    .service-card-large,
    .service-card-offset,
    .service-card-small,
    .service-card-wide,
    .service-card-elevated {
        flex: 1 1 100%;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .form-container-diagonal,
    .form-container-offset-left {
        padding: 40px 20px;
        margin: 0;
    }

    .footer-irregular {
        padding: 60px 20px 40px;
    }

    .footer-content-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .legal-page-content {
        padding: 60px 20px;
    }

    .legal-page-content h1 {
        font-size: 36px;
    }
}

/* Hidden class for JS functionality */
.hidden {
    display: none !important;
}