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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

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

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #234d24;
}

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

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.header-asymmetric {
    position: relative;
    padding: 0;
}

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

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

.logo-wrapper {
    flex: 0 0 auto;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.nav-links a {
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    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 {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: var(--bg-light);
}

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

.hero-text-float {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    background-color: var(--bg-white);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
    margin-left: 8%;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.intro-diagonal {
    position: relative;
    padding: 6rem 5%;
    background-color: var(--bg-light);
    margin-top: -8rem;
    padding-top: 12rem;
}

.content-narrow {
    max-width: 750px;
    margin-left: 10%;
    margin-bottom: 3rem;
}

.stats-overlay {
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
    margin-right: 10%;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.services-grid-offset {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
}

.service-card.large {
    flex: 1 1 calc(50% - 2rem);
}

.service-card.offset-top {
    margin-top: 3rem;
}

.service-card.offset-bottom {
    margin-bottom: 3rem;
}

.service-card.offset-right {
    margin-right: 4rem;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.service-card.large .service-image {
    height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 2rem;
}

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

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: var(--text-dark);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-section-float {
    position: relative;
    padding: 8rem 5%;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
}

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

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    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: all 0.3s ease;
}

.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.1rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234d24;
}

.form-image-side {
    flex: 0 0 40%;
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.form-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-section {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

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

.philosophy-text {
    flex: 1;
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
}

.philosophy-visual {
    flex: 0 0 400px;
    height: 400px;
}

.visual-block {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.15;
}

.testimonials-scattered {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.testimonials-scattered h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.testimonial.offset-1 {
    margin-left: 5%;
}

.testimonial.offset-2 {
    margin-right: 5%;
    margin-left: auto;
    max-width: 85%;
}

.testimonial.offset-3 {
    margin-left: 10%;
    max-width: 80%;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-brand h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #999;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #999;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-offset {
    padding: 6rem 5% 4rem;
    background-color: var(--bg-light);
}

.hero-content-diagonal {
    max-width: 800px;
    margin-left: 10%;
}

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

.story-section {
    padding: 8rem 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image-float {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.story-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding-top: 2rem;
}

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

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

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

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.approach-item {
    background-color: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.approach-item.offset-left {
    margin-right: 15%;
}

.approach-item.offset-right {
    margin-left: 15%;
}

.approach-item.offset-center {
    margin-left: 8%;
    margin-right: 8%;
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.expertise-grid {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.expertise-grid h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.expertise-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.values-section-diagonal {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-wrapper h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-content {
    display: flex;
    gap: 3rem;
}

.value-block {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-white);
}

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

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

.cta-section-float {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-content-offset h2 {
    color: var(--bg-white);
}

.cta-content-offset p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 6rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto 6rem;
}

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

.service-detail-card.offset-layout {
    margin-left: 5%;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    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: 2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-service-select {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: #234d24;
}

.process-section {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

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

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-section-centered {
    padding: 8rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.cta-section-centered h2 {
    margin-bottom: 1.5rem;
}

.cta-section-centered p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #234d24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.contact-layout {
    display: flex;
    gap: 5rem;
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

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

.contact-info-block h2 {
    margin-bottom: 3rem;
}

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

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

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

.contact-note {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-top: 3rem;
}

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

.contact-visual {
    flex: 0 0 40%;
    background-color: var(--bg-light);
}

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

.location-section {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.location-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.location-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.location-directions {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.direction-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    text-align: center;
}

.direction-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.faq-section-asymmetric {
    padding: 8rem 5%;
    background-color: var(--bg-white);
}

.faq-section-asymmetric h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-light);
}

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

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

.thanks-section {
    padding: 8rem 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-note {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234d24;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.next-steps-section {
    padding: 8rem 5%;
    background-color: var(--bg-light);
}

.next-steps-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.legal-page {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.centered {
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-offset {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-text-float {
        margin-left: 0;
        width: 100%;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .service-card.offset-top,
    .service-card.offset-bottom,
    .service-card.offset-right {
        margin: 0;
    }

    .form-section-float {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .form-image-side {
        width: 100%;
        height: 300px;
    }

    .content-split,
    .story-section,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .values-content,
    .process-steps,
    .location-directions {
        flex-direction: column;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}