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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --max-width-narrow: 680px;
    --max-width-wide: 1200px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 17px;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

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

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.editorial-container {
    padding: 0;
}

.hero-editorial {
    text-align: center;
    padding: var(--spacing-xl) 1.5rem var(--spacing-lg) 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.lead-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.hero-image-inline {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-lg) auto 0 auto;
    display: block;
}

.page-header-editorial {
    text-align: center;
    padding: var(--spacing-lg) 1.5rem var(--spacing-md) 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.story-section {
    padding: var(--spacing-lg) 1.5rem;
}

.narrow-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.narrow-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.narrow-content h2 {
    font-size: 1.9rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.narrow-content h4 {
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: var(--spacing-md) 0;
    display: block;
}

.inline-cta {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.inline-cta-secondary {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-inline:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-text-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.btn-text-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.testimonial-inline {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: var(--spacing-lg) 0;
    font-style: italic;
    border-radius: 4px;
}

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

.services-preview {
    margin: var(--spacing-lg) 0;
}

.service-card-editorial {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

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

.service-card-editorial p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.05rem;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: var(--spacing-lg) 0;
}

.trust-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.trust-item h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.order-form-editorial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    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(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-color);
}

.btn-submit-editorial {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-editorial:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.final-cta {
    text-align: center;
    margin: var(--spacing-lg) 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.final-cta p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.inline-link-emphasis {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.inline-link-emphasis:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

.pricing-section {
    margin: var(--spacing-lg) 0;
}

.pricing-section h2 {
    margin-top: var(--spacing-xl);
}

.price-list {
    margin: var(--spacing-md) 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.service-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: var(--spacing-lg) 0;
}

.pricing-note h3 {
    margin-top: 0;
}

.pricing-note ul {
    margin: 1rem 0 0 1.5rem;
}

.pricing-note li {
    margin-bottom: 0.5rem;
}

.contact-info-section {
    margin: var(--spacing-lg) 0;
}

.contact-block {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.contact-block h2 {
    margin-top: 0;
    font-size: 1.4rem;
}

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

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

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

.info-list {
    margin: 1rem 0 1rem 1.5rem;
}

.info-list li {
    margin-bottom: 0.7rem;
}

.faq-item {
    margin: var(--spacing-md) 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

.faq-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: var(--spacing-xl) 1.5rem;
    min-height: 60vh;
}

.thanks-box {
    text-align: center;
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
}

.checkmark-circle {
    stroke: var(--success-color);
    stroke-width: 2;
}

.checkmark-check {
    stroke: var(--success-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.thanks-box h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.thanks-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: var(--spacing-md) 0;
    text-align: left;
}

.thanks-info p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.thanks-info ul {
    margin: 0 0 0 1.5rem;
}

.thanks-info li {
    margin-bottom: 0.5rem;
}

.service-info-box {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 6px;
    margin: var(--spacing-md) 0;
    border-left: 4px solid var(--accent-color);
}

.thanks-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: var(--spacing-md) 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: var(--spacing-md) 0;
}

.contact-reminder {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

.contact-reminder a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

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

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

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

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

.gdpr-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.footer-minimal {
    background: var(--primary-color);
    color: #fff;
    padding: var(--spacing-lg) 1.5rem var(--spacing-md) 1.5rem;
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: var(--spacing-md) auto 0 auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 0.5rem;
    }

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

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

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

    .page-header-editorial h1 {
        font-size: 1.8rem;
    }

    .opening-paragraph {
        font-size: 1.1rem;
    }

    .narrow-content h2 {
        font-size: 1.5rem;
    }

    .btn-inline {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .thanks-box h1 {
        font-size: 1.6rem;
    }

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

    .gdpr-table {
        font-size: 0.9rem;
    }

    .gdpr-table th,
    .gdpr-table td {
        padding: 0.5rem;
    }
}