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

:root {
    --primary-color: #2c5f4d;
    --secondary-color: #4a7362;
    --accent-color: #8b9f95;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-accent: #e8ede8;
}

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

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

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: sticky;
    top: 2rem;
    z-index: 900;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    max-width: 1400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 3rem;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content-offset {
    flex: 1;
    max-width: 650px;
    padding-right: 4rem;
    z-index: 10;
}

.hero-title-large {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    opacity: 0.85;
}

.hero-image-overlap {
    flex: 1;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transform: translateY(-40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    max-width: 1200px;
    margin: 8rem auto 6rem;
    padding: 0 3rem;
}

.intro-narrow {
    max-width: 800px;
    margin-left: 12%;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-visual {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.story-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.story-left img {
    width: 100%;
    height: 550px;
}

.story-right-stacked {
    flex: 1;
    padding-left: 2rem;
}

.story-right-stacked h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-right-stacked p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-cards-irregular {
    max-width: 1500px;
    margin: 10rem auto;
    padding: 0 3rem;
}

.section-title-offset {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    margin-left: 8%;
    font-weight: 700;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-elevated {
    max-width: 900px;
}

.card-offset-right {
    margin-left: auto;
    max-width: 850px;
}

.card-offset-left {
    margin-right: auto;
    max-width: 850px;
}

.card-image-wrapper {
    flex: 1;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.cta-card {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-card:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.testimonial-overlap {
    max-width: 1000px;
    margin: 8rem auto;
    padding: 0 3rem;
    transform: translateX(-8%);
}

.testimonial-box {
    background: var(--bg-accent);
    padding: 3rem;
    border-left: 6px solid var(--primary-color);
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 3rem;
    gap: 5rem;
    align-items: center;
}

.form-container-offset {
    flex: 1;
}

.form-container-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-container-offset > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-notice {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    font-size: 0.95rem;
    color: #856404;
}

.form-notice.success {
    background: #d4edda;
    border-left-color: #28a745;
    color: #155724;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-submit:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-visual {
    flex: 1;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.info-block-scattered {
    display: flex;
    max-width: 1300px;
    margin: 8rem auto;
    padding: 0 3rem;
    gap: 4rem;
    justify-content: space-between;
}

.info-item {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.info-offset-1 {
    transform: translateY(-30px);
}

.info-offset-2 {
    transform: translateY(30px);
}

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

.info-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 3rem 2rem;
    margin-top: 10rem;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-column p,
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    display: block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 2rem 3rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.cookie-accept:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-reject {
    background: #e0e0e0;
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: #d0d0d0;
    transform: scale(1.05);
}

.page-header-offset {
    max-width: 1200px;
    margin: 6rem auto 4rem;
    padding: 0 3rem;
    margin-left: 15%;
}

.page-header-offset h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.about-split-visual {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-image-offset {
    flex: 1;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(40px) rotate(3deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image-offset img {
    width: 100%;
    height: 100%;
}

.values-scattered {
    display: flex;
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
    gap: 3rem;
    justify-content: space-between;
}

.value-box {
    flex: 1;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-pos-1 {
    transform: translateY(-30px);
}

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

.value-pos-3 {
    transform: translateY(-15px);
}

.value-box h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.story-long-form {
    max-width: 900px;
    margin: 8rem auto;
    padding: 0 3rem;
}

.story-container h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

.services-list-asymmetric {
    max-width: 1500px;
    margin: 6rem auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
}

.card-left {
    margin-right: auto;
    max-width: 1200px;
}

.card-right {
    margin-left: auto;
    max-width: 1200px;
    flex-direction: row-reverse;
}

.card-center {
    margin: 0 auto;
    max-width: 1000px;
    flex-direction: column;
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    min-width: 400px;
}

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

.card-center .service-detail-image {
    width: 100%;
    min-width: 100%;
}

.card-center .service-detail-image img {
    height: 350px;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

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

.btn-inline {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-inline:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-section-offset {
    max-width: 1000px;
    margin: 8rem auto;
    padding: 4rem 3rem;
    background: var(--bg-accent);
    border-radius: 12px;
    text-align: center;
    transform: translateX(5%);
}

.cta-section-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section-offset p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-layout-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
    gap: 5rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

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

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

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

.contact-note {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-visual-block {
    flex: 1;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-visual-block img {
    width: 100%;
    height: 100%;
}

.contact-cta-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-cta-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.thanks-page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

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

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

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.thanks-info {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.thanks-info p {
    font-size: 1.1rem;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

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

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.legal-page-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.legal-page-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page-container h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

.legal-page-container li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .story-visual,
    .form-section-split,
    .about-split-visual,
    .contact-layout-split,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-content-offset {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 3.5rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .cards-grid-asymmetric .service-card {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .info-block-scattered,
    .values-scattered {
        flex-direction: column;
    }

    .info-offset-1,
    .info-offset-2,
    .value-pos-1,
    .value-pos-2,
    .value-pos-3 {
        transform: translateY(0);
    }

    .service-detail-image {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .section-title-offset,
    .page-header-offset h1 {
        font-size: 2.5rem;
    }

    .nav-floating {
        padding: 1rem;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .page-header-offset {
        margin-left: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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