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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #6b8f71;
    --accent-color: #d97642;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #737373;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.3rem;
}

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

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

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

.main-nav {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.story-flow {
    background-color: var(--bg-white);
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 4rem 2rem 3rem;
}

.hero-overlay h1 {
    color: var(--bg-white);
    font-size: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-intro {
    padding: 3rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.inline-cta-section {
    padding: 2rem 0;
}

.cta-box-inline {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2rem 0;
}

.cta-box-inline h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.story-body {
    padding: 2rem 0;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.inline-image figcaption {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.7rem;
    text-align: center;
    font-style: italic;
}

.testimonial-inline {
    padding: 2rem 0;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-muted);
}

.insight-box {
    background-color: #fffbf0;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.insight-box h4 {
    margin-top: 0;
    color: var(--accent-color);
}

.cta-mid-story {
    padding: 3rem 0;
}

.cta-card {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 6px;
}

.cta-card h3 {
    color: var(--bg-white);
    margin-top: 0;
    font-size: 1.8rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-reveal {
    padding: 3rem 0;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-top: 0;
    color: var(--primary-color);
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 6px;
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    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-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
}

.form-notice a {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #c5693a;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 3rem 0;
}

.urgency-box {
    background-color: #fff4e6;
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
}

.urgency-box h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.final-story {
    padding: 4rem 0;
}

.final-cta {
    text-align: center;
    margin: 3rem 0;
}

.btn-final {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

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

.sticky-content span {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

.btn-sticky {
    background-color: var(--bg-white);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--bg-white);
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--bg-light);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--bg-white);
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-content {
    margin-top: 2rem;
    min-height: 60vh;
}

.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.about-story {
    padding: 2rem 0 4rem;
}

.story-image {
    width: 100%;
    border-radius: 6px;
    margin: 2rem 0;
}

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

.team-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.team-list li:last-child {
    border-bottom: none;
}

.quote-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin: 3rem 0;
}

.quote-box blockquote {
    border-left: none;
    padding-left: 0;
}

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

.stats-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.cta-section-about {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.cta-section-about h3 {
    margin-top: 0;
    font-size: 1.8rem;
}

.services-detailed {
    padding: 2rem 0;
}

.service-full {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

.service-full:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-duration {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-price-large {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-full ul {
    margin: 1.5rem 0 2rem;
}

.service-full li {
    margin-bottom: 0.7rem;
}

.services-info {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.included-list,
.excluded-list {
    margin: 1.5rem 0;
}

.included-list li,
.excluded-list li {
    padding: 0.7rem 0;
}

.faq-section {
    margin: 4rem 0 2rem;
}

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

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

.cta-bottom {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
}

.contact-section {
    padding: 2rem 0 4rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-map {
    flex: 1 1 400px;
}

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

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

.contact-item p {
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.contact-item ul {
    margin-top: 1rem;
}

.contact-item li {
    margin-bottom: 0.5rem;
}

.map-placeholder {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 0.8rem;
}

.location-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.location-info h3 {
    margin-top: 0;
}

.faq-contact {
    margin: 4rem 0 2rem;
}

.emergency-contact {
    background-color: #fff4e6;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.emergency-contact h2 {
    margin-top: 0;
    color: var(--accent-color);
}

.cta-contact {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.cta-contact h3 {
    margin-top: 0;
}

.thanks-page {
    padding: 3rem 0 5rem;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

.thanks-list {
    margin: 1.5rem 0 1.5rem 2rem;
}

.service-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-next-steps {
    margin: 4rem 0;
}

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

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

.step {
    flex: 1 1 250px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step p {
    font-size: 0.95rem;
    text-align: left;
}

.thanks-faq {
    margin: 4rem 0;
    text-align: left;
}

.thanks-cta {
    margin: 4rem 0 2rem;
}

.thanks-cta h3 {
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.thanks-testimonial {
    margin: 4rem 0 2rem;
    text-align: left;
}

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

.last-updated {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin: 3rem 0;
}

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

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

.legal-section li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .narrow-content {
        padding: 0 1.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .sticky-content span {
        font-size: 1rem;
    }

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

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

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

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

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}