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

:root {
    --primary-green: #2d5a3d;
    --light-green: #4a7c5d;
    --accent-green: #6b9e7f;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #707070;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e4e0;
}

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5% 4rem 8%;
}

.hero-text-block {
    max-width: 560px;
    transform: translateY(-40px);
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.hero-asymmetric h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-asymmetric p {
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-offset-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-image-stack {
    width: 100%;
    max-width: 650px;
    margin-left: -80px;
    transform: translateY(60px);
}

.hero-image-stack img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.offset-intro {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
    background: var(--bg-light);
}

.intro-block-right {
    flex: 1.5;
    transform: translateX(60px);
}

.intro-block-right h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intro-block-right p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.intro-stat-left {
    flex: 1;
    transform: translateX(-40px);
}

.stat-card {
    background: white;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.5;
}

.irregular-cards {
    padding: 8rem 5% 5rem;
}

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

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--medium-text);
}

.cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cards-row-second {
    margin-left: 8%;
}

.card-offset {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
    transform: translateY(-20px);
}

.card-medium {
    flex: 1 1 calc(45% - 1rem);
    display: flex;
    flex-direction: row;
    transform: translateY(30px);
}

.card-small {
    flex: 1 1 calc(30% - 1rem);
}

.card-image {
    width: 100%;
    overflow: hidden;
}

.card-medium .card-image {
    width: 50%;
}

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

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

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-medium .card-content {
    width: 50%;
}

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

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.link-arrow {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.overlap-philosophy {
    position: relative;
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-background {
    position: absolute;
    top: 10%;
    right: 0;
    width: 60%;
    height: 80%;
    background: var(--bg-light);
    z-index: -1;
}

.philosophy-content-offset {
    flex: 1.2;
    max-width: 600px;
    transform: translateX(80px);
}

.section-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.philosophy-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.philosophy-image-overlap {
    flex: 1;
    transform: translateY(-60px);
}

.philosophy-image-overlap img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-offset {
    padding: 5rem 5%;
    background: var(--bg-light);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-block {
    flex: 1;
    min-width: 300px;
    transform: translateY(-30px);
}

.testimonial-right {
    transform: translateY(30px);
}

.testimonial-block blockquote {
    background: white;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
}

.process-irregular {
    padding: 7rem 5%;
}

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

.process-header-left h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.process-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-block {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background: var(--bg-light);
    position: relative;
}

.step-right {
    transform: translateY(40px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.impact-metrics {
    padding: 6rem 5%;
    background: var(--primary-green);
}

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

.metric-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.metric-elevated {
    transform: translateY(-30px);
}

.metric-card h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.metric-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-layered {
    position: relative;
    padding: 8rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--bg-light);
    z-index: -1;
}

.cta-content-block {
    flex: 1;
    max-width: 500px;
    transform: translateX(60px);
}

.cta-content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-block p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.form-container-offset {
    flex: 1;
    transform: translateY(-40px);
}

.contact-form {
    background: white;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.final-push {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.push-content-right {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    text-align: right;
}

.push-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.push-content-right p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 90, 61, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--light-green);
}

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

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

.about-hero-offset {
    display: flex;
    padding: 10rem 5% 6rem;
    gap: 4rem;
    align-items: center;
}

.about-text-left {
    flex: 1;
    transform: translateY(-40px);
}

.about-text-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-text-left p {
    font-size: 1.2rem;
    color: var(--medium-text);
}

.about-image-right {
    flex: 1;
    transform: translateY(40px);
}

.about-image-right img {
    width: 100%;
    height: auto;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.15);
}

.origin-irregular {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.origin-content-offset {
    flex: 1.5;
    max-width: 700px;
}

.origin-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.origin-stat-right {
    flex: 1;
}

.stat-highlight {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-40px);
}

.stat-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.5;
}

.values-asymmetric {
    padding: 7rem 5%;
}

.values-header {
    margin-bottom: 3rem;
    margin-left: 8%;
}

.values-header h2 {
    font-size: 2.8rem;
}

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

.value-block {
    flex: 1 1 calc(50% - 1rem);
    padding: 3rem;
    background: var(--bg-light);
}

.value-elevated {
    transform: translateY(-40px);
}

.value-right {
    transform: translateY(40px);
}

.value-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.team-offset {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-intro-right {
    flex: 1;
    order: 2;
}

.team-intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-intro-right p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.team-image-left {
    flex: 1;
    order: 1;
    transform: translateY(-30px);
}

.team-image-left img {
    width: 100%;
    height: auto;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.15);
}

.approach-layered {
    position: relative;
    padding: 7rem 5%;
}

.approach-background {
    position: absolute;
    top: 15%;
    right: 0;
    width: 70%;
    height: 70%;
    background: var(--bg-light);
    z-index: -1;
}

.approach-content {
    max-width: 900px;
    margin-left: 8%;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.approach-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-point {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-point:nth-child(even) {
    transform: translateY(30px);
}

.approach-point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-point p {
    color: var(--medium-text);
    line-height: 1.7;
}

.impact-story {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
}

.impact-narrative-left {
    flex: 1.3;
}

.impact-narrative-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-narrative-left p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.impact-metrics-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-box {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-box:last-child {
    transform: translateY(30px);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.5;
}

.certifications-offset {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
}

.cert-header-right {
    flex: 1;
    transform: translateY(40px);
}

.cert-header-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cert-header-right p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.cert-list-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--dark-text);
    border-left: 4px solid var(--primary-green);
}

.future-vision {
    padding: 7rem 5%;
    background: var(--bg-light);
}

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

.vision-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.vision-content-center .cta-primary {
    margin-top: 1rem;
}

.services-hero-irregular {
    padding: 10rem 5% 5rem;
}

.services-headline-offset {
    max-width: 800px;
    margin-left: 10%;
}

.services-headline-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-headline-offset p {
    font-size: 1.2rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.service-detail-asymmetric {
    padding: 4rem 5%;
}

.service-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-left {
    margin-left: 0;
}

.service-right {
    margin-left: auto;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-info {
    flex: 1;
}

.service-block.service-left .service-visual {
    transform: translateY(-30px);
}

.service-block.service-right .service-visual {
    transform: translateY(30px);
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: block;
}

.service-info p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

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

.comparison-offset {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.8rem;
}

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

.comparison-card {
    flex: 1;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card.highlighted {
    transform: scale(1.05);
    border: 3px solid var(--primary-green);
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.comparison-list.negative li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c44;
    font-weight: 700;
}

.comparison-list.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.booking-prompt-layered {
    padding: 7rem 5%;
    position: relative;
}

.booking-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 4rem 3rem;
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-hero-offset {
    padding: 10rem 5% 5rem;
}

.contact-intro-left {
    max-width: 700px;
    margin-left: 8%;
}

.contact-intro-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-intro-left p {
    font-size: 1.2rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.contact-info-asymmetric {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-block-left {
    flex: 1;
    transform: translateY(-40px);
}

.info-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

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

.contact-detail p {
    font-size: 1.1rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.response-time,
.note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.info-visual-right {
    flex: 1;
    transform: translateY(40px);
}

.info-visual-right img {
    width: 100%;
    height: auto;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.15);
}

.areas-served {
    padding: 6rem 5%;
    background: var(--bg-light);
}

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

.areas-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.areas-content-center p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.area-tag {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--dark-text);
    border-radius: 4px;
}

.faq-offset {
    padding: 6rem 5%;
}

.faq-header-right {
    max-width: 500px;
    margin-left: auto;
    margin-right: 10%;
    margin-bottom: 3rem;
}

.faq-header-right h2 {
    font-size: 2.8rem;
}

.faq-list-left {
    max-width: 900px;
    margin-left: 5%;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
}

.faq-item:nth-child(even) {
    transform: translateX(40px);
}

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

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

.testimonial-contact {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.testimonial-block-center {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-block-center blockquote {
    background: white;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.testimonial-block-center cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
}

.final-cta-offset {
    padding: 7rem 5%;
}

.cta-content-right {
    max-width: 600px;
    margin-left: auto;
    margin-right: 8%;
}

.cta-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content-right p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-hero {
    padding: 10rem 5% 3rem;
    background: var(--bg-light);
}

.legal-header {
    max-width: 800px;
    margin: 0 auto;
}

.legal-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    color: var(--light-text);
}

.legal-content {
    padding: 4rem 5%;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--medium-text);
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--medium-text);
}

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

.legal-text a:hover {
    color: var(--light-green);
}

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

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

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

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

.cookie-table td {
    color: var(--medium-text);
}

.thanks-hero {
    padding: 12rem 5% 6rem;
    background: var(--bg-light);
}

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

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

.thanks-icon svg {
    display: inline-block;
}

.thanks-content-center h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--medium-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.selected-service-display {
    background: white;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary-green);
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 2rem;
}

.next-steps-offset {
    padding: 5rem 5%;
}

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

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

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

.step-card {
    flex: 1;
    min-width: 240px;
    background: var(--bg-light);
    padding: 2.5rem;
    position: relative;
}

.step-card:nth-child(even) {
    transform: translateY(30px);
}

.step-card .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-green);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.explore-more {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.explore-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.explore-content-left p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background: var(--bg-light);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.link-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.link-card p {
    color: var(--medium-text);
    margin: 0;
}

.explore-visual-right {
    flex: 1;
    transform: translateY(40px);
}

.explore-visual-right img {
    width: 100%;
    height: auto;
    box-shadow: -15px 15px 50px rgba(0, 0, 0, 0.15);
}

.confirmation-details {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.details-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.details-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.details-box p {
    font-size: 1.05rem;
    color: var(--medium-text);
    line-height: 1.8;
}

.details-box a {
    color: var(--primary-green);
    font-weight: 600;
}

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

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-text-block {
        transform: none;
    }

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

    .hero-image-stack {
        margin-left: 0;
        transform: none;
    }

    .offset-intro,
    .origin-irregular,
    .team-offset,
    .impact-story,
    .certifications-offset,
    .contact-info-asymmetric,
    .explore-more {
        flex-direction: column;
    }

    .intro-block-right,
    .intro-stat-left,
    .origin-content-offset,
    .team-image-left,
    .cert-header-right {
        transform: none;
    }

    .cards-row-second {
        margin-left: 0;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
        transform: none;
    }

    .card-medium {
        flex-direction: column;
    }

    .card-medium .card-image,
    .card-medium .card-content {
        width: 100%;
    }

    .philosophy-content-offset {
        transform: none;
    }

    .philosophy-image-overlap {
        transform: none;
    }

    .about-hero-offset,
    .service-block {
        flex-direction: column;
    }

    .service-block.service-left .service-visual,
    .service-block.service-right .service-visual {
        transform: none;
    }

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

    .comparison-card.highlighted {
        transform: none;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .nav-links {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .hero-asymmetric h1,
    .about-text-left h1,
    .services-headline-offset h1,
    .contact-intro-left h1 {
        font-size: 2rem;
    }

    .section-header-offset,
    .process-header-left,
    .values-header {
        margin-left: 0;
    }

    .faq-item:nth-child(even) {
        transform: none;
    }

    .step-card:nth-child(even) {
        transform: none;
    }
}