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

:root {
    --primary-dark: #1a1a2e;
    --primary-blue: #16213e;
    --accent-gold: #d4af37;
    --text-light: #f5f5f5;
    --text-gray: #b8b8b8;
    --text-dark: #2a2a2a;
    --bg-light: #fafafa;
    --bg-section: #f0f0f0;
    --border-subtle: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

a:hover {
    color: var(--accent-gold);
}

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

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

.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;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background-color: #c99d2e;
}

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

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

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

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

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

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

.editorial-container {
    max-width: 100%;
    background-color: white;
}

.editorial-hero {
    padding: 5rem 5% 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--text-light);
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
}

.editorial-intro,
.editorial-problem,
.editorial-insight,
.editorial-story,
.editorial-services,
.editorial-form-section,
.editorial-trust {
    padding: 4rem 5%;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    float: left;
    margin: 0 0.15rem 0 0;
    color: var(--accent-gold);
}

.text-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.text-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.text-narrow h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

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

.editorial-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

blockquote {
    border-left: 4px solid var(--accent-gold);
    padding-left: 2rem;
    margin: 3rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-blue);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-gray);
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    padding: 2rem;
    background-color: var(--bg-section);
    border-left: 3px solid var(--accent-gold);
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.editorial-cta-inline {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--bg-section);
    text-align: center;
}

.editorial-cta-inline p {
    font-size: 1.15rem;
    margin: 0;
}

.cta-link {
    color: var(--accent-gold);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

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

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-block {
    padding: 2.5rem;
    background-color: white;
    border: 2px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.btn-service {
    padding: 0.85rem 2rem;
    background-color: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.editorial-form {
    max-width: 620px;
    margin: 2rem auto 0;
    padding: 2.5rem;
    background-color: var(--bg-section);
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.editorial-final-cta {
    max-width: 720px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background-color: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
}

.editorial-final-cta p {
    font-size: 1.3rem;
    margin: 0;
}

.editorial-final-cta a {
    color: var(--accent-gold);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-gold);
}

.footer-minimal {
    background-color: var(--primary-dark);
    color: var(--text-gray);
    padding: 3rem 5%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #7a7a7a;
}

.page-header-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-principles,
.about-approach,
.about-team {
    padding: 3rem 5%;
    background-color: var(--bg-section);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.principle-item {
    padding: 1.5rem;
    background-color: white;
    border-left: 3px solid var(--accent-gold);
}

.principle-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.editorial-cta-box {
    max-width: 720px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: var(--bg-section);
    text-align: center;
}

.editorial-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.editorial-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.services-detailed {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 5%;
}

.service-detail-block {
    margin-bottom: 4rem;
    border: 2px solid var(--border-subtle);
    background-color: white;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-section);
    border-bottom: 2px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-dark);
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}

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

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.service-detail-content li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.service-note {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.services-cta-section {
    padding: 4rem 5%;
    background-color: var(--bg-section);
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.1rem 3rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-info-section {
    padding: 3rem 5%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.contact-approach,
.contact-faq {
    padding: 3rem 5%;
    background-color: var(--bg-section);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

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

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: white;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta {
    padding: 4rem 5%;
    text-align: center;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
}

.thanks-content {
    max-width: 720px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-service {
    padding: 1.5rem;
    background-color: var(--bg-section);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.thanks-service p {
    font-size: 1.1rem;
    margin: 0;
}

.thanks-next {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-section);
}

.thanks-next h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.next-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-time {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.next-step p {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-text {
    display: inline-block;
    padding: 0.9rem 2rem;
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.thanks-urgent {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    text-align: left;
}

.thanks-urgent p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.thanks-urgent a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-section li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-note {
    font-style: italic;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: var(--bg-section);
    font-weight: 600;
    color: var(--primary-dark);
}

.gdpr-table td,
.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .text-narrow p {
        font-size: 1rem;
    }

    .editorial-image img {
        height: 300px;
    }

    .insight-cards {
        gap: 1.5rem;
    }

    .service-block {
        padding: 1.5rem;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

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

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

    .service-detail-header h2 {
        font-size: 1.5rem;
    }

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

    .approach-steps {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary,
    .btn-text {
        width: 100%;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .service-detail-block {
        margin-bottom: 2rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}