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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-brand a {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f4f4f4;
    letter-spacing: 0.5px;
}

.nav-ad-notice {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-ad-notice span {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #d4d4d4;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #fff;
    font-weight: 600;
}

.hero-offset {
    position: relative;
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #e8e3db;
    overflow: hidden;
}

.hero-text-block {
    position: relative;
    z-index: 10;
    padding: 4rem 6rem;
    max-width: 650px;
    margin-left: 8%;
}

.hero-text-block h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.hero-image-overlay {
    position: absolute;
    top: 12%;
    right: 5%;
    width: 48%;
    height: 70%;
    background-color: #c4b8a5;
    box-shadow: -8px 8px 0 rgba(0,0,0,0.08);
}

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

.intro-asymmetric {
    display: flex;
    align-items: stretch;
    min-height: 75vh;
    background-color: #fff;
}

.intro-visual {
    flex: 0 0 42%;
    background-color: #d9d4cc;
    margin: 3rem 0 3rem 5%;
    position: relative;
}

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

.intro-content {
    flex: 1;
    padding: 6rem 8% 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.services-preview-offset {
    padding: 6rem 5%;
    background-color: #f4f1ed;
}

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-left: 3%;
}

.services-header-split h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.link-subtle {
    font-size: 1rem;
    color: #2d5f3f;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: #1a3a27;
}

.services-grid-asymmetric {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

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

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

.service-card.offset-center {
    margin-top: 0;
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #d9d4cc;
    overflow: hidden;
}

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

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5f3f;
}

.cta-diagonal {
    min-height: 50vh;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3a27 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 10%;
    position: relative;
    overflow: hidden;
}

.cta-diagonal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background-color: rgba(255,255,255,0.03);
    transform: rotate(-15deg);
}

.cta-content-angle {
    max-width: 550px;
    text-align: left;
}

.cta-content-angle h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-content-angle p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #fff;
    color: #2d5f3f;
}

.philosophy-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: #fff;
}

.philosophy-text {
    flex: 0 0 48%;
    padding: 5rem 8% 5rem 10%;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.philosophy-image {
    flex: 1;
    height: 70vh;
    background-color: #d9d4cc;
    position: relative;
    margin-right: 5%;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.05);
}

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

.booking-section {
    padding: 6rem 5%;
    background-color: #f4f1ed;
}

.booking-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 4rem 5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

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

.booking-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.booking-intro p {
    font-size: 1.05rem;
    color: #666;
}

.form-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2a2a2a;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    background-color: #fafafa;
    color: #2a2a2a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f3f;
    background-color: #fff;
}

.btn-submit {
    padding: 1.1rem 3rem;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #fff8f0;
    border-top: 1px solid #e0d8cc;
    border-bottom: 1px solid #e0d8cc;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 4rem 5% 2rem;
}

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

.footer-brand-block h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-brand-block p {
    font-size: 0.95rem;
    color: #999;
}

.footer-links-block h4,
.footer-legal-block h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links-block ul,
.footer-legal-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links-block a,
.footer-legal-block a {
    font-size: 0.9rem;
    color: #999;
    transition: color 0.3s ease;
}

.footer-links-block a:hover,
.footer-legal-block a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 0.8rem 2rem;
    background-color: #2d5f3f;
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #234a31;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 2px solid #555;
    color: #d4d4d4;
}

.btn-cookie.btn-secondary:hover {
    border-color: #777;
    color: #fff;
}

.page-hero-asymmetric {
    margin-top: 80px;
    padding: 6rem 10% 4rem;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3a27 100%);
    text-align: center;
    color: #fff;
}

.page-hero-asymmetric h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

.story-section-offset {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background-color: #fff;
    gap: 5%;
}

.story-image-left {
    flex: 0 0 40%;
    height: 550px;
    background-color: #d9d4cc;
    position: relative;
    margin-left: 3%;
}

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

.story-content-right {
    flex: 1;
    padding: 2rem 5% 2rem 0;
}

.story-content-right h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.values-grid-asymmetric {
    padding: 6rem 8%;
    background-color: #f4f1ed;
}

.section-title-offset {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1a1a1a;
    margin-left: 5%;
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.value-block {
    flex: 0 0 calc(50% - 2rem);
    background-color: #fff;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
}

.value-block.diagonal-top {
    margin-top: -1.5rem;
}

.value-block.diagonal-bottom {
    margin-top: 1.5rem;
}

.value-block.diagonal-center {
    margin-top: 0;
}

.value-block h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.team-intro {
    padding: 6rem 5%;
    background-color: #fff;
}

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

.team-text {
    flex: 0 0 48%;
}

.team-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.team-visual {
    flex: 1;
    height: 500px;
    background-color: #d9d4cc;
}

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

.philosophy-detailed {
    padding: 6rem 10%;
    background-color: #f4f1ed;
}

.philosophy-content-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content-asymmetric h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.philosophy-content-asymmetric p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.8rem;
}

.cta-about {
    padding: 5rem 10%;
    background-color: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.services-detailed {
    padding: 4rem 8%;
    background-color: #fff;
}

.service-item-asymmetric {
    display: flex;
    align-items: center;
    gap: 5%;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #fafafa;
}

.service-item-asymmetric.reverse {
    flex-direction: row-reverse;
    background-color: #fff;
}

.service-visual {
    flex: 0 0 45%;
    height: 400px;
    background-color: #d9d4cc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

.service-cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.booking-cta-section {
    padding: 5rem 10%;
    background-color: #f4f1ed;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.booking-cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.contact-layout-asymmetric {
    padding: 5rem 8%;
    background-color: #fff;
}

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

.contact-block {
    flex: 0 0 calc(50% - 2rem);
    background-color: #fafafa;
    padding: 3rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-block.offset-left {
    margin-top: -2rem;
}

.contact-block.offset-right {
    margin-top: 2rem;
}

.contact-block.offset-center {
    margin-top: 0;
    flex: 0 0 100%;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.contact-detail {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.contact-detail-email {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.day {
    font-weight: 600;
    color: #2a2a2a;
}

.time {
    color: #555;
}

.location-info {
    padding: 5rem 8%;
    background-color: #f4f1ed;
}

.location-content-split {
    display: flex;
    align-items: center;
    gap: 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.location-text {
    flex: 0 0 50%;
}

.location-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.location-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.location-image {
    flex: 1;
    height: 450px;
    background-color: #d9d4cc;
}

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

.visit-info-section {
    padding: 5rem 10%;
    background-color: #fff;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.visit-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.contact-cta-section {
    padding: 5rem 10%;
    background-color: #f4f1ed;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 10%;
    background-color: #f4f1ed;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.service-confirmation {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2d5f3f;
    margin-top: 2rem;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: #444;
}

.next-steps {
    padding: 5rem 8%;
    background-color: #fff;
}

.next-steps-content {
    max-width: 1100px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.step-item {
    flex: 0 0 calc(33.333% - 2rem);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.thanks-cta-section {
    padding: 5rem 10%;
    background-color: #f4f1ed;
    text-align: center;
}

.thanks-cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.thanks-cta-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.legal-page {
    margin-top: 80px;
    padding: 5rem 10%;
    background-color: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 500;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.legal-page h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

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

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

.legal-page a {
    color: #2d5f3f;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #1a3a27;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 3rem;
    }

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

    .service-card {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

    .values-blocks .value-block {
        flex: 0 0 100%;
    }
}

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

    .nav-ad-notice {
        position: static;
        transform: none;
    }

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

    .hero-text-block {
        padding: 3rem 2rem;
        margin-left: 0;
    }

    .hero-image-overlay {
        position: static;
        width: 100%;
        height: 400px;
        margin: 2rem 0;
    }

    .intro-asymmetric,
    .philosophy-split,
    .story-section-offset,
    .team-content-split,
    .location-content-split,
    .service-item-asymmetric {
        flex-direction: column;
    }

    .service-item-asymmetric.reverse {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

    .contact-block {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

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

    .step-item {
        flex: 0 0 100%;
    }
}