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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d2a;
    --accent-color: #c47d4a;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0d9cf;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    white-space: nowrap;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
}

.nav-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

.hero-offset {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-visual-block {
    width: 65%;
    max-width: 700px;
    margin-left: auto;
    margin-right: 8%;
    position: relative;
    margin-bottom: -80px;
    z-index: 2;
}

.hero-visual-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.hero-overlay-tag {
    position: absolute;
    top: 20px;
    left: -40px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.hero-text-block {
    background: var(--bg-light);
    padding: 80px 40px 60px;
    width: 70%;
    max-width: 650px;
    margin-left: 5%;
    border-radius: 8px;
    position: relative;
    z-index: 3;
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
    margin-top: 80px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-item strong {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.philosophy-asymmetric {
    display: flex;
    gap: 80px;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-left {
    flex: 1;
    padding-top: 60px;
}

.philosophy-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary-dark);
    font-weight: 800;
}

.philosophy-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-right {
    flex: 1;
    position: relative;
}

.philosophy-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.floating-quote {
    position: absolute;
    bottom: -40px;
    left: -60px;
    background: white;
    padding: 28px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.floating-quote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.services-cards-offset {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

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

.section-header-offset h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    color: var(--primary-dark);
    font-weight: 800;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-offset-1 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: 0;
}

.card-offset-2 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: 40px;
}

.card-offset-3 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: -20px;
}

.card-offset-4 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: 30px;
}

.card-offset-5 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: -30px;
}

.card-offset-6 {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    margin-top: 20px;
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.testimonial-overlap {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.testimonial-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 600px;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 600px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.why-different {
    padding: 120px 40px;
    background: var(--bg-white);
}

.why-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.why-left-col {
    flex: 1;
}

.why-left-col h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--primary-dark);
    font-weight: 800;
}

.why-image-embed {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

.why-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.why-point h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 700;
}

.why-point p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-immersive {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.cta-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 700px;
}

.cta-overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary-large {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary-large:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.how-it-works-offset {
    padding: 100px 40px;
    background: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-offset h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 800;
}

.steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-1 {
    transform: translateY(-20px);
}

.step-2 {
    transform: translateY(20px);
}

.step-3 {
    transform: translateY(-10px);
}

.step-4 {
    transform: translateY(10px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.form-section-offset {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 50px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-weight: 800;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.booking-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.final-push {
    padding: 100px 40px;
    background: var(--primary-dark);
    color: white;
}

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

.final-push-content h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 800;
}

.final-push-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-inline-text {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-inline-text:hover {
    color: white;
    border-bottom-color: white;
    transform: translateX(4px);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    opacity: 0.85;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-link {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta-link:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    border-color: white;
}

.page-hero-offset {
    padding: 140px 40px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-text {
    flex: 1;
}

.page-hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.page-hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
}

.page-hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.story-block {
    margin-bottom: 80px;
}

.story-left {
    margin-right: auto;
    max-width: 650px;
}

.story-right {
    margin-left: auto;
    max-width: 700px;
}

.story-center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.story-right img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.story-caption {
    margin-top: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.story-caption p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.large-quote {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-dark);
    padding: 50px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 6px solid var(--accent-color);
}

.large-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.team-asymmetric {
    padding: 100px 40px;
    background: var(--bg-light);
}

.team-asymmetric h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 800;
}

.team-grid-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.team-member {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.member-offset-1 {
    margin-top: 0;
}

.member-offset-2 {
    margin-top: 40px;
}

.member-offset-3 {
    margin-top: -20px;
}

.member-offset-4 {
    margin-top: 20px;
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 24px 24px 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 24px 16px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 0 24px 24px;
}

.values-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 800;
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 40px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-about-content p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.services-hero {
    padding: 140px 40px 80px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detailed {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-layout-1 {
    flex-direction: row;
}

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

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

.service-image-block img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

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

.service-details-list {
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.detail-item strong {
    color: var(--primary-dark);
}

.service-price-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.booking-prompt {
    padding: 80px 40px;
    background: var(--bg-light);
    text-align: center;
}

.booking-prompt h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-weight: 800;
}

.booking-prompt p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-hero {
    padding: 140px 40px 80px;
    background: var(--bg-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-content-offset {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 80px;
}

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

.contact-item {
    margin-bottom: 50px;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-visual-block {
    flex: 1;
    position: relative;
}

.contact-visual-block img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-overlay-text {
    margin-top: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 6px;
}

.contact-overlay-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-offset {
    padding: 100px 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-light);
}

.faq-offset h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-weight: 800;
}

.faq-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 28px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 700;
}

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

.cta-contact {
    padding: 80px 40px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-contact-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-contact-content p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-contact-content a {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-contact-content a:hover {
    color: white;
    border-bottom-color: white;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-info {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}

.next-steps-list {
    padding-left: 20px;
}

.next-steps-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-thanks-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.btn-thanks-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 140px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 800;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

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

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

@media (max-width: 1024px) {
    .nav-floating {
        top: 10px;
        padding: 10px 20px;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .philosophy-asymmetric {
        flex-direction: column;
        gap: 50px;
        padding: 80px 30px;
    }

    .floating-quote {
        position: static;
        margin-top: 30px;
        max-width: 100%;
    }

    .why-content-split,
    .contact-content-offset {
        flex-direction: column;
        gap: 50px;
    }

    .page-hero-offset {
        flex-direction: column;
        padding-top: 120px;
    }

    .service-detailed {
        flex-direction: column !important;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 10px 16px;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        max-width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .hero-offset {
        padding: 100px 20px 40px;
    }

    .hero-visual-block {
        width: 100%;
        margin: 0 0 -40px 0;
    }

    .hero-text-block {
        width: 100%;
        margin: 0;
        padding: 60px 24px 40px;
    }

    .hero-text-block h1 {
        font-size: 1.8rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .trust-strip {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .cards-grid-asymmetric {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .step {
        transform: none !important;
    }

    .booking-form {
        padding: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-link {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .team-grid-offset {
        flex-direction: column;
    }

    .team-member {
        margin-top: 0 !important;
    }

    .values-blocks,
    .faq-blocks {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-thanks-primary,
    .btn-thanks-secondary {
        width: 100%;
    }

    .legal-content {
        padding: 30px;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

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

    .page-hero-text h1,
    .services-hero-content h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

    .section-header-offset h2,
    .philosophy-left h2,
    .why-left-col h2,
    .how-it-works-offset h2,
    .form-intro h2,
    .final-push-content h2,
    .team-asymmetric h2,
    .values-section h2,
    .faq-offset h2,
    .booking-prompt h2 {
        font-size: 1.8rem;
    }

    .cta-overlay-content h2 {
        font-size: 2rem;
    }

    .large-quote {
        font-size: 1.3rem;
        padding: 30px;
    }
}
