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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #4a4a4a;
    --text-color: #333;
    --light-text: #666;
    --bg-color: #ffffff;
    --bg-alt: #f8f8f8;
    --border-color: #e0e0e0;
    --highlight-color: #d4af37;
}

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu li a {
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    text-transform: lowercase;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.editorial-hero {
    margin-bottom: 4rem;
}

.hero-date {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    margin-top: 2rem;
    overflow: hidden;
}

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

.editorial-section {
    margin-bottom: 3rem;
}

.section-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.section-text p {
    margin-bottom: 1.2rem;
}

.section-text ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

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

.editorial-image-section {
    margin: 3rem 0;
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
}

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

.editorial-quote {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    background: var(--bg-alt);
}

.editorial-quote blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.editorial-quote cite {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: normal;
}

.cta-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.cta-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.2rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-link:hover {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.insight-list {
    list-style: none;
    margin-left: 0;
}

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

.insight-list li:before {
    content: '→';
    position: absolute;
    left: 0;
}

.trust-signals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-alt);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--light-text);
}

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

.testimonial-card {
    background: var(--bg-alt);
    padding: 2rem;
    border-left: 3px solid var(--highlight-color);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: normal;
}

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

.services-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-alt);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.service-card p {
    margin-bottom: 1rem;
}

.service-includes {
    font-weight: bold;
    margin-top: 1.5rem;
}

.service-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

.btn-select-service:hover {
    background: var(--highlight-color);
}

.editorial-form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-alt);
}

.editorial-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background: white;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    color: white;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid white;
}

.sticky-cta-btn:hover {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    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-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.2rem;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: var(--highlight-color);
    color: white;
}

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

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

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

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

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

.footer-column p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.footer-column ul li a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.contact-item p {
    color: var(--light-text);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.thanks-section {
    text-align: center;
    padding: 4rem 0;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service-selected {
    background: var(--bg-alt);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid var(--highlight-color);
    font-size: 1.1rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.thanks-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.thanks-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-back,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-back:hover {
    background: var(--highlight-color);
}

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

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

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

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

.cookies-table th {
    background: var(--bg-alt);
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        padding: 1rem 5%;
        border-bottom: 1px solid var(--border-color);
        gap: 1rem;
    }

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

    .hero-headline {
        font-size: 2rem;
    }

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

    .editorial-container {
        padding: 2rem 5%;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }

    body {
        font-size: 16px;
    }

    .trust-signals {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .trust-number {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie,
    .btn-cookie-reject {
        width: 100%;
    }

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

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

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

    .cookies-table {
        font-size: 0.8rem;
    }

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

@media (min-width: 769px) {
    .trust-signals {
        flex-direction: row;
        justify-content: space-around;
    }
}