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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #34495e;
    --color-accent: #3498db;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e1e8ed;
    --color-button: #2980b9;
    --color-button-hover: #1f6a9c;
}

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

.ad-disclosure {
    background: var(--color-bg-alt);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header-simple {
    position: sticky;
    top: 0;
    background: var(--color-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.2s ease;
}

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

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

.hero-text-narrow {
    max-width: 680px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--color-primary);
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.hero-image-inline {
    max-width: 800px;
    width: 100%;
    background: var(--color-bg-alt);
}

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

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
    color: var(--color-secondary);
}

.content-narrow p {
    margin-bottom: 20px;
}

.content-narrow ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-narrow li {
    margin-bottom: 12px;
}

.cta-inline {
    margin: 35px 0;
    text-align: center;
}

.btn-text-link {
    font-size: 19px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.btn-text-link:hover {
    color: var(--color-button-hover);
}

.image-text-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.image-text-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: var(--color-bg-alt);
}

.text-beside {
    padding: 0 20px;
}

.text-beside h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.text-beside p {
    margin-bottom: 18px;
}

.quote-inline {
    border-left: 4px solid var(--color-accent);
    padding: 24px 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    background: var(--color-bg-alt);
    color: var(--color-secondary);
}

.services-preview {
    max-width: 1100px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 19px;
    color: var(--color-text-light);
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--color-bg-alt);
}

.service-card h3 {
    font-size: 26px;
    margin: 24px 24px 16px;
    color: var(--color-primary);
}

.service-card p {
    margin: 0 24px 16px;
    font-size: 17px;
    line-height: 1.6;
}

.service-card .price {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-accent);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn-select-service {
    margin: 20px 24px 24px;
    padding: 14px 28px;
    background: var(--color-button);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.form-section-editorial {
    max-width: 680px;
    margin: 60px auto 0;
    padding: 40px;
    background: var(--color-bg-alt);
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.form-section-editorial > p {
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.form-editorial {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-secondary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: border-color 0.2s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background: var(--color-button);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 30px;
    background: #fff9f0;
    border-left: 3px solid #f39c12;
    margin-top: 40px;
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.references-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.references-list {
    list-style-position: outside;
    padding-left: 24px;
}

.references-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--color-text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.references-list a {
    color: var(--color-accent);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer-editorial {
    background: var(--color-primary);
    color: white;
    padding: 40px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: white;
    padding: 24px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-outline {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.2s ease;
}

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

.btn-cookie:hover {
    background: var(--color-bg-alt);
}

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

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

.service-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.service-content p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

.price-highlight {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-accent);
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-alt);
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-button);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background 0.2s ease;
    margin-top: 10px;
}

.btn-cta:hover {
    background: var(--color-button-hover);
}

.image-full {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-bg-alt);
}

.image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.quote-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.quote-section blockquote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: var(--color-secondary);
    padding: 0 40px;
}

.team-image {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-alt);
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-section-about {
    max-width: 680px;
    margin: 50px auto;
    padding: 40px;
    background: var(--color-bg-alt);
    text-align: center;
}

.cta-section-about h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.cta-section-about p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-section-about a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.cta-section-about a:hover {
    text-decoration: underline;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 900px;
    margin: 40px auto;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
}

.email-display {
    font-family: 'Courier New', monospace;
    background: var(--color-bg-alt);
    padding: 8px 12px;
    display: inline-block;
    font-size: 16px;
}

.contact-note {
    font-size: 15px;
    color: var(--color-text-light);
    margin-top: 8px;
    font-style: italic;
}

.map-placeholder {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: var(--color-bg-alt);
}

.map-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text);
}

.thanks-content {
    text-align: center;
    padding: 40px 0;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.confirmation-box {
    background: var(--color-bg-alt);
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 12px;
}

.next-steps a {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 17px;
}

.next-steps a:hover {
    text-decoration: underline;
}

.thanks-note {
    margin-top: 40px;
    padding: 20px;
    background: #fff9f0;
    border-left: 3px solid var(--color-accent);
}

.thanks-note p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.updated-date {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.legal-page p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

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

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

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 36px;
    }

    .nav-main {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-details {
        flex-direction: column;
    }

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