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

:root {
    --primary-color: #1a2634;
    --secondary-color: #2d4a5e;
    --accent-color: #4a7c9e;
    --text-color: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #27ae60;
}

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

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

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

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.brand:hover {
    color: var(--accent-color);
}

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

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

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

.hero-editorial {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: #ffffff;
}

.headline-editorial {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
}

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

.story-intro {
    padding: 4rem 2rem 3rem;
}

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

.story-intro p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.inline-image-section {
    padding: 3rem 0;
    max-width: 960px;
    margin: 0 auto;
}

.content-image {
    width: 100%;
    border-radius: 2px;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

.story-section {
    padding: 3.5rem 2rem;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: var(--primary-color);
}

.story-section p {
    margin-bottom: 1.3rem;
}

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

.cta-text-inline {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.cta-link-inline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
}

.cta-link-inline:hover {
    color: var(--primary-color);
}

.insight-block {
    background-color: #f4f7f9;
    padding: 4rem 0;
    margin: 4rem 0;
}

.insight-content {
    padding: 0 2rem;
}

.insight-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    margin-bottom: 0.9rem;
    line-height: 1.7;
}

.pillar-item {
    margin: 2.5rem 0;
}

.pillar-heading {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.trust-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 4rem 0;
    margin: 4rem 0;
}

.trust-section .section-heading {
    color: #ffffff;
}

.testimonial-block {
    margin: 2.5rem 0;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}

.services-preview {
    padding: 4rem 2rem;
}

.service-card-editorial {
    border-left: 3px solid var(--accent-color);
    padding: 2rem 0 2rem 2rem;
    margin: 3rem 0;
}

.service-name {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-outcome {
    font-weight: 500;
    margin: 1.2rem 0;
    color: var(--secondary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-service-select {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service-select:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.final-section {
    padding: 4rem 2rem;
}

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

.final-cta-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.btn-final-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 2rem;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.selected-service-display {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    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 textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.philosophy-section {
    background-color: #fafbfc;
    padding: 4rem 0;
    margin: 4rem 0;
}

.characteristic-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.characteristic-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.service-detail-card {
    margin: 3rem 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-name {
    font-size: 1.8rem;
    margin: 0;
    color: #ffffff;
}

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.service-detail-content {
    padding: 2.5rem 2rem;
}

.service-detail-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-detail-subheading {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-detail-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.service-faq {
    padding: 4rem 2rem;
}

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

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-answer {
    line-height: 1.7;
    color: var(--text-color);
}

.contact-section {
    padding: 3rem 2rem;
}

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

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin: 2rem 0;
}

.contact-label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-value {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.additional-info {
    padding: 3rem 2rem;
    background-color: #fafbfc;
    margin: 3rem 0;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.thanks-container {
    padding: 4rem 2rem;
}

.thanks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-selected-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
}

.service-selected-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-selected-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.thanks-step {
    margin: 2.5rem 0;
}

.thanks-step-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.thanks-additional {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 3rem 0;
}

.thanks-links {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

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

.thanks-contact {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafbfc;
    border-radius: 4px;
}

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

.legal-content {
    padding: 3rem 2rem 5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

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

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ffffff;
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-links li {
        padding: 0.75rem 2rem;
    }

    .headline-editorial {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        gap: 1rem;
    }

    .next-step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
}

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

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

    .headline-editorial {
        font-size: 1.8rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.4rem;
    }

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

    .service-detail-price {
        font-size: 1.8rem;
    }
}