/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fefefe;
}

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

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3d1a;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

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

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

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid #2c5f2d;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

.nav-links a {
    font-size: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: #333;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #2c5f2d;
}

/* ============================================
   EDITORIAL CONTENT STRUCTURE
   ============================================ */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

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

/* ============================================
   HERO SECTION (EDITORIAL STYLE)
   ============================================ */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #fafafa;
}

.hero-text-center {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-editorial {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-image-editorial img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ============================================
   STORY SECTIONS
   ============================================ */
.story-intro {
    padding: 4rem 0 2rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.inline-image-block {
    margin: 2.5rem 0;
}

.inline-image-block img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* ============================================
   CTA ELEMENTS
   ============================================ */
.cta-inline-block {
    text-align: center;
    padding: 2rem 0;
}

.cta-text-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f2d;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.cta-text-link:hover {
    color: #1a3d1a;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c5f2d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #1a3d1a;
}

.btn-select-service,
.btn-select-service-page {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #d35400;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-top: 1rem;
}

.btn-select-service:hover,
.btn-select-service-page:hover {
    background-color: #a04000;
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.8rem;
    background-color: #d35400;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(211,84,0,0.4);
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.sticky-cta-btn:hover {
    background-color: #a04000;
    box-shadow: 0 6px 16px rgba(211,84,0,0.5);
    transform: translateY(-2px);
}

/* ============================================
   INSIGHT & REVEAL SECTIONS
   ============================================ */
.insight-reveal {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.insight-reveal .content-narrow {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-inline {
    padding: 3rem 0;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    border-left: 4px solid #d35400;
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* ============================================
   LISTS
   ============================================ */
.benefit-list,
.audience-list,
.stats-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li,
.audience-list li,
.stats-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.benefit-list li:before,
.audience-list li:before,
.stats-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   SERVICES (EDITORIAL STYLE)
   ============================================ */
.services-reveal {
    padding: 3rem 0;
}

.services-editorial {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.service-card-editorial {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-card-editorial h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d35400;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

/* ============================================
   URGENCY BLOCK
   ============================================ */
.urgency-block {
    padding: 2rem 0;
    background-color: #fff5e6;
}

.urgency-text {
    font-size: 1.1rem;
    text-align: center;
    color: #d35400;
    font-weight: 600;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 3rem 0;
}

/* ============================================
   BENEFITS
   ============================================ */
.included-benefits {
    margin-top: 2rem;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h4 {
    color: #2c5f2d;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
}

.booking-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    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: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

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

/* ============================================
   FINAL THOUGHT
   ============================================ */
.final-thought {
    padding: 3rem 0;
}

.closing-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    text-align: center;
    border-top: 1px solid #34495e;
    font-size: 0.85rem;
    color: #95a5a6;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-cookie-accept {
    background-color: #2c5f2d;
    color: #fff;
}

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

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

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-header-editorial {
    padding: 4rem 0 2rem;
    background-color: #fafafa;
}

.header-intro {
    font-size: 1.25rem;
    color: #555;
}

.values-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

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

.value-item h3 {
    color: #2c5f2d;
    margin-top: 0;
}

.team-member {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.cta-section-about {
    padding: 4rem 0;
    text-align: center;
    background-color: #f5f5f5;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detailed {
    padding: 2rem 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-image-full {
    margin: 2rem auto;
    max-width: 1000px;
}

.service-image-full img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.service-highlights li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-highlights li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #d35400;
    margin: 2rem 0 1rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.booking-info {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 3rem 0;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h2 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #2c5f2d;
}

.contact-detail {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.contact-info-text {
    margin-top: 4rem;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-top: 0;
}

.contact-cta {
    padding: 3rem 0;
    text-align: center;
    background-color: #f5f5f5;
    margin: 3rem -1.5rem 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-service-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
}

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

.next-steps h2 {
    text-align: center;
}

.next-steps-list {
    padding-left: 2rem;
}

.next-steps-list li {
    margin-bottom: 1.5rem;
}

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

.thanks-links {
    list-style: none;
    padding: 0;
}

.thanks-links li {
    margin-bottom: 0.8rem;
}

.thanks-contact {
    margin: 2rem 0;
    font-size: 1.1rem;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-section {
    padding: 3rem 0;
}

.policy-date {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* ============================================
   MODAL
   ============================================ */
.service-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.service-modal.show {
    display: block;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

#modal-service-name {
    font-size: 1.2rem;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

    .hero-editorial {
        padding: 2rem 0 1.5rem;
    }

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

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

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

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

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

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .service-price-large {
        font-size: 1.6rem;
    }
}

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

    h2 {
        font-size: 1.4rem;
    }

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

    .hero-text-center,
    .hero-image-editorial {
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-select-service,
    .btn-select-service-page {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }
}
