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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --accent-green: #27ae60;
    --accent-blue: #3498db;
}

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

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

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

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

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

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

.hero-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.editorial-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.editorial-intro p {
    margin-bottom: 1.5rem;
}

.inline-cta-soft {
    margin: 2rem 0;
}

.text-link-arrow {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.text-link-arrow:hover {
    color: var(--secondary-color);
}

.editorial-story-section,
.editorial-insight-section,
.editorial-method-section,
.editorial-testimonial-flow,
.editorial-urgency-section,
.editorial-booking-section,
.editorial-final-section {
    margin-bottom: 4rem;
}

.editorial-story-section h2,
.editorial-insight-section h2,
.editorial-method-section h2,
.editorial-testimonial-flow h2,
.editorial-urgency-section h2,
.editorial-booking-section h2,
.editorial-final-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.editorial-story-section p,
.editorial-insight-section p,
.editorial-method-section p,
.editorial-urgency-section p,
.editorial-final-section p {
    margin-bottom: 1.5rem;
}

.story-image-float {
    float: right;
    width: 55%;
    margin: 0 0 1.5rem 2rem;
}

.story-image-float img {
    border-radius: 4px;
}

.editorial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin: 2.5rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-dark);
    clear: both;
}

.editorial-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.insight-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.insight-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.inline-cta-button-wrap {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-primary,
.btn-primary-alt,
.btn-primary-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
}

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

.btn-primary-alt {
    background: var(--accent-green);
}

.btn-primary-large {
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.service-showcase {
    margin: 2rem 0;
}

.service-feature {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-image-inline {
    margin-bottom: 1.5rem;
}

.service-image-inline img {
    border-radius: 4px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-age {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1rem;
}

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

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 1.5rem 0 1rem 0;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    padding: 0.8rem 1.8rem;
    background: var(--accent-blue);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.testimonial-inline {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.testimonial-inline p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.stat-highlight {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

.booking-form {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

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

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-green);
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

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

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

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

.footer-section h4 {
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #bbb;
}

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

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

.footer-section ul li a {
    color: #bbb;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

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

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

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

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

.page-header-simple {
    margin-bottom: 3rem;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.belief-statements,
.approach-list {
    margin: 2rem 0;
}

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

.belief-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.belief-item p {
    margin: 0;
    color: var(--text-light);
}

.approach-image {
    margin: 2.5rem 0;
}

.approach-image img {
    border-radius: 4px;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.editorial-team-section {
    margin-bottom: 4rem;
}

.team-member {
    margin-bottom: 2.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-role {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-light);
}

.editorial-impact-section {
    margin-bottom: 4rem;
}

.editorial-call-to-action-wrap {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.services-detailed {
    margin: 3rem 0;
}

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

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

.service-header-area {
    margin-bottom: 1.5rem;
}

.service-header-area h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-age-tag {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.service-image-full {
    margin-bottom: 2rem;
}

.service-image-full img {
    border-radius: 4px;
}

.service-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
}

.service-description ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-description li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

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

.booking-prompt-section {
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.booking-prompt-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-section {
    margin-bottom: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.contact-faq-section {
    margin-bottom: 4rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

.quick-booking-link {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.quick-booking-link h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.thanks-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-details,
.thanks-info,
.thanks-social-proof,
.thanks-next-links {
    margin-bottom: 4rem;
}

.thanks-details h2,
.thanks-info h2,
.thanks-social-proof h2,
.thanks-next-links h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.link-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

.link-card:hover h3,
.link-card:hover p {
    color: white;
}

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

.link-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.legal-page .legal-content {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem 0;
    color: var(--text-dark);
}

.legal-page p,
.legal-page li {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

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

    .story-image-float {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

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

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .link-cards {
        flex-direction: column;
    }

    .link-card {
        max-width: 100%;
    }
}