:root {
    --primary-color: #2A7F62;
    --secondary-color: #1A4D3A;
    --text-color: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

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

p {
    margin-bottom: 1.5rem;
}

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;
}

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

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.editorial-content {
    max-width: 100%;
}

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

.hero-editorial {
    padding: 5rem 0 4rem;
    background: var(--bg-light);
}

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

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

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

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.85;
    margin: 0.1rem 0.2rem 0 0;
    font-weight: bold;
    color: var(--primary-color);
}

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

.link-arrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    padding: 0.75rem 0;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.visual-break {
    margin: 4rem 0;
}

.full-width-image {
    margin: 0;
}

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

figcaption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
    font-style: italic;
}

.problem-section,
.insight-section,
.story-case,
.trust-section,
.benefits-reveal {
    padding: 4rem 0;
}

.problem-section {
    background: var(--bg-light);
}

.highlight-box {
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.highlight-box p {
    margin-bottom: 0;
}

.technique-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.technique-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.technique-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.quote-editorial {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 3rem 0;
    line-height: 1.6;
}

.cta-section-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 3rem 0;
}

.cta-section-box h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.testimonial-inline {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

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

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

.benefits-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.services-preview {
    padding: 4rem 0;
    background: var(--bg-light);
}

.service-editorial {
    background: var(--bg-white);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-editorial h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.price-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.form-section {
    padding: 5rem 0;
}

.editorial-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-primary,
.btn-submit,
.btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

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

.btn-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}

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

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

.urgency-box {
    background: #fff8e6;
    border: 2px solid #ffb800;
    padding: 2.5rem;
    border-radius: 8px;
}

.urgency-box h3 {
    color: #d67e00;
    margin-top: 0;
}

.final-thought {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.site-footer {
    background: var(--text-color);
    color: #ccc;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-brand h3 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #999;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: #999;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #444;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    animation: fadeInUp 0.5s ease;
}

.btn-sticky {
    display: block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    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;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

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

.page-header {
    padding: 4rem 0 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.contact-split {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

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

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

.contact-detail p {
    margin-bottom: 0.5rem;
}

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

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

.map-placeholder {
    background: #e0e0e0;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-top: 2rem;
    color: var(--text-light);
}

.faq-section {
    padding: 4rem 0;
}

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

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

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

.service-full {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    overflow: hidden;
}

.service-header {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
}

.service-body {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

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

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

.services-footer {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.services-footer h2 {
    margin-top: 0;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-container {
    padding: 5rem 0;
}

.thanks-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    text-align: center;
    color: var(--primary-color);
}

.thanks-lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

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

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

.step-content h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.step-content p {
    margin-bottom: 0;
}

.thanks-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

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

.thanks-note {
    background: #f0f8ff;
    border-left: 4px solid #4a90e2;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 3rem;
}

.thanks-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.legal-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-date {
    font-style: italic;
    color: var(--text-light);
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
}

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

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

.cookie-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td,
.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: left;
}

.cookie-table th,
.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

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

.approach-section,
.mission-section,
.team-section,
.values-section {
    padding: 3rem 0;
}

.principle-card,
.value-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.principle-card h3,
.value-block h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

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

.cta-section {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-intro,
.contact-content {
    padding: 2rem 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 1rem 2rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .hero-text-centered {
        padding: 0 1.5rem;
    }

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

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

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

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

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
    }

    .cookie-table,
    .cookies-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .narrow-content {
        padding: 0 3rem;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}
