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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #1f3d2a;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

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

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

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

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

.sticky-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.4);
    display: inline-block;
}

.sticky-btn:hover {
    background: #1f3d2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.5);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-offset-left {
    position: absolute;
    left: 0;
    top: 15%;
    width: 55%;
    height: 70%;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-offset-right {
    position: relative;
    margin-left: auto;
    width: 50%;
    padding: 4rem;
    background: var(--bg-light);
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1f3d2a;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #6d5a43;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.3rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-offset {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-intro {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
}

.problem-amplification {
    padding: 8rem 2rem;
}

.split-irregular {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-block-left {
    flex: 1;
    padding-right: 3rem;
}

.image-block-right {
    flex: 1;
    position: relative;
    top: -3rem;
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
}

.insight-box {
    text-align: center;
}

.insight-box h3 {
    color: white;
    margin-bottom: 2rem;
}

.insight-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.insight-box blockquote {
    font-size: 2rem;
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.storytelling-section {
    padding: 8rem 2rem;
    position: relative;
}

.layered-content {
    position: relative;
    min-height: 600px;
}

.story-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
}

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

.story-text-overlay {
    position: relative;
    width: 50%;
    background: white;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    top: 4rem;
}

.btn-inline {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

.trust-building {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.trust-cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.trust-card.card-1 {
    margin-left: 0;
    width: 70%;
}

.trust-card.card-2 {
    margin-left: 15%;
    width: 75%;
}

.trust-card.card-3 {
    margin-left: 10%;
    width: 80%;
}

.testimonials-inline {
    padding: 6rem 2rem;
}

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

.testimonial-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    font-style: italic;
}

.testimonial-item p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.testimonial-item span {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 8rem 2rem;
}

.split-offset-reverse {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.image-left-offset {
    flex: 1;
    position: relative;
    bottom: -2rem;
}

.content-right-stacked {
    flex: 1;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.how-it-works {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.centered-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.process-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-offset-1 {
    margin-left: 5%;
    width: 85%;
}

.step-offset-2 {
    margin-left: 15%;
    width: 80%;
}

.step-offset-3 {
    margin-left: 10%;
    width: 75%;
}

.step-offset-4 {
    margin-left: 0;
    width: 90%;
}

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

.social-proof {
    padding: 6rem 2rem;
    text-align: center;
}

.social-proof h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-section {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.urgency-box {
    text-align: center;
    color: white;
}

.urgency-text {
    font-size: 1.2rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.pricing-services {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.service-1 {
    margin-top: 0;
}

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

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

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

.service-card.service-5 {
    margin-top: 0.5rem;
}

.service-card.service-6 {
    margin-top: 2.5rem;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
}

.badge-popular,
.badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-desc {
    color: var(--text-light);
    margin: 1.5rem 0;
    font-size: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1f3d2a;
}

.booking-form-container {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.selected-service-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-form-asymmetric {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1f3d2a;
}

.btn-cancel {
    background: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: var(--bg-light);
}

.final-cta {
    padding: 8rem 2rem;
}

.cta-offset-block {
    background: var(--primary-color);
    color: white;
    padding: 5rem;
    text-align: center;
    margin-left: 10%;
    width: 80%;
}

.cta-offset-block h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-offset-block p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.guarantee-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

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

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #aaa;
}

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

.footer-links a {
    color: white;
    font-size: 0.95rem;
}

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

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

.page-hero-offset {
    padding: 10rem 2rem 4rem;
    background: var(--bg-light);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-content-about,
.hero-content-services,
.hero-content-contact {
    max-width: 800px;
}

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

.about-story {
    padding: 8rem 2rem;
}

.story-layout-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
    top: -3rem;
}

.mission-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.mission-section h2 {
    color: white;
}

.values-section {
    padding: 8rem 2rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
}

.team-section {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.team-layout-irregular {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.cta-about,
.cta-box-offset,
.cta-box-centered {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-box-offset {
    background: var(--bg-light);
}

.service-detail-item {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

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

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

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

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
}

.featured-service {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.services-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.cta-centered {
    text-align: center;
}

.contact-info {
    padding: 8rem 2rem;
}

.contact-layout-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

.contact-item a {
    color: var(--primary-color);
}

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

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
}

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

.contact-cta {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message {
    margin: 3rem 0;
}

.service-booked {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1.5rem 0;
}

.confirmation-text {
    color: var(--text-light);
}

.thanks-next-steps {
    background: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.page-legal {
    padding: 10rem 2rem 4rem;
}

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

.page-legal h2 {
    margin-top: 2.5rem;
    color: var(--primary-color);
}

.page-legal h3 {
    margin-top: 2rem;
    color: var(--secondary-color);
}

.page-legal ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-legal li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 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;
}

@media (max-width: 1024px) {
    .hero-offset-left {
        width: 50%;
    }

    .hero-offset-right {
        width: 55%;
    }

    .hero-title {
        font-size: 3rem;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .nav-floating {
        width: 95%;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

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

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 1rem 2rem;
    }

    .hero-offset-left {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-offset-right {
        width: 100%;
        margin-top: 2rem;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .split-irregular,
    .split-offset-reverse,
    .story-layout-asymmetric,
    .contact-layout-split {
        flex-direction: column;
        gap: 2rem;
    }

    .content-block-left,
    .image-block-right,
    .image-left-offset,
    .content-right-stacked {
        width: 100%;
        padding: 0;
        top: 0;
        bottom: 0;
    }

    .layered-content {
        min-height: auto;
    }

    .story-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .story-text-overlay {
        width: 100%;
        top: 0;
        padding: 2rem;
    }

    .trust-card.card-1,
    .trust-card.card-2,
    .trust-card.card-3 {
        margin-left: 0;
        width: 100%;
    }

    .section-title-offset,
    .centered-title {
        font-size: 2rem;
        margin-left: 0;
    }

    .process-step {
        flex-direction: column;
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4 {
        margin-left: 0;
        width: 100%;
    }

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

    .service-card.service-1,
    .service-card.service-2,
    .service-card.service-3,
    .service-card.service-4,
    .service-card.service-5,
    .service-card.service-6 {
        margin-top: 0;
    }

    .cta-offset-block {
        margin-left: 0;
        width: 100%;
        padding: 3rem 2rem;
    }

    .cta-offset-block h2 {
        font-size: 2rem;
    }

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

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

    .service-detail-item {
        flex-direction: column;
        padding: 4rem 1rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        gap: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
    }
}