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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #d4af37;
    --light-bg: #fafafa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --text-color: #2c2c2c;
    --link-color: #1a1a1a;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--link-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

.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;
    min-width: 250px;
}

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

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

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

.btn-accept:hover {
    background: #c09b2e;
}

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

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

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.editorial-hero {
    background: var(--light-bg);
    padding: 5rem 2rem 4rem;
    margin-bottom: 3rem;
}

.hero-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--secondary-color);
    font-style: italic;
}

.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.text-block {
    margin-bottom: 3rem;
}

.text-block p {
    margin-bottom: 1.5rem;
}

.text-block h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.5px;
}

.text-block h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.text-block h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.text-block ul,
.text-block ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-block li {
    margin-bottom: 0.8rem;
}

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.cta-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cta-link:hover {
    border-bottom-color: var(--primary-color);
    opacity: 1;
}

.quote-section blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    padding: 2rem 0 2rem 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 3rem 0;
    color: var(--secondary-color);
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-color);
}

.feature-cards {
    margin: 3rem 0;
}

.feature-card {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--secondary-color);
}

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

.service-item {
    margin-bottom: 3rem;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-left: 3px solid var(--accent-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.6rem;
    flex: 1;
    min-width: 200px;
}

.price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-item p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-cta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.service-cta:hover {
    background: var(--secondary-color);
    opacity: 1;
}

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

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

.service-body {
    margin-top: 1.5rem;
}

.service-body h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.service-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.service-body ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.service-body li {
    margin-bottom: 0.8rem;
}

.testimonials-editorial {
    margin: 3rem 0;
}

.testimonial {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-bg);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

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

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.benefit-list {
    list-style: none;
    margin: 2rem 0 2.5rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: var(--secondary-color);
    opacity: 1;
}

.editorial-form {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: var(--light-bg);
}

.form-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 2px solid var(--border-color);
    background: var(--white);
    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);
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-thoughts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
}

.contact-info-block {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

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

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

.faq-section {
    margin: 3rem 0;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.thanks-content {
    text-align: center;
}

.thanks-info {
    padding: 2rem;
    background: var(--light-bg);
    margin: 2rem 0;
}

.thanks-info strong {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    padding: 2rem;
    background: var(--light-bg);
}

.next-steps h3 {
    margin-top: 0;
}

.next-steps ul {
    margin-left: 2rem;
}

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

.team-values {
    margin: 3rem 0;
}

.value-card {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--light-bg);
}

.value-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--secondary-color);
}

.legal-page .text-block strong {
    font-weight: 700;
    color: var(--primary-color);
}

.legal-page .text-block a {
    word-break: break-word;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: var(--light-bg);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
}

.cookie-table td {
    font-size: 0.95rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c09b2e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

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

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

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

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

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

    .editorial-content {
        padding: 0 1.5rem 3rem;
    }

    .text-block h2 {
        font-size: 1.6rem;
    }

    .text-block h3 {
        font-size: 1.3rem;
    }

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

    .price {
        font-size: 1.5rem;
    }

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

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

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

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

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

    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

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

@media (max-width: 480px) {
    .editorial-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .editorial-hero h1 {
        font-size: 1.7rem;
    }

    .service-item {
        padding: 1.5rem 1rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 2rem 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }
}