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

:root {
    --primary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --secondary-accent: #0f3460;
}

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

.editorial-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-hero {
    margin-bottom: 3.5rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

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

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

.article-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.editorial-section {
    padding: 0;
}

.editorial-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.editorial-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.inline-cta:hover {
    color: var(--secondary-accent);
    border-color: var(--secondary-accent);
}

.image-embed {
    margin: 3rem 0;
}

.image-embed img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.8rem;
}

.image-caption {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--light-bg);
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
}

.highlight-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 4px;
}

.editorial-list {
    list-style: none;
    margin: 1.5rem 0;
}

.editorial-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.1rem;
}

.editorial-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.section-cta {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s;
    margin-top: 1rem;
}

.section-cta:hover {
    background: var(--secondary-accent);
}

.services-reveal {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.services-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.service-select {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.service-select:hover {
    background: var(--secondary-accent);
}

.service-select.selected {
    background: var(--accent-color);
}

.testimonial-inline {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 3rem 0;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #666;
}

.urgency-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2.5rem;
    margin: 3rem 0;
}

.urgent-cta {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    border-radius: 3px;
    transition: background 0.3s;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

.urgent-cta:hover {
    background: #d63851;
}

.form-section {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.editorial-form {
    margin-top: 2rem;
}

.form-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 2rem;
    display: none;
}

.form-notice.show {
    display: block;
}

.form-notice p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

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

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

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

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

.form-group input[readonly] {
    background: #e9ecef;
}

.submit-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d63851;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.closing {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    margin-top: 4rem;
}

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

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

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

.footer-section h4 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .editorial-section h2 {
        font-size: 1.6rem;
    }

    .editorial-section p {
        font-size: 1.05rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .services-reveal,
    .form-section {
        padding: 2rem 1.5rem;
    }

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

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

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

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

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

    .cookie-btn {
        flex: 1;
    }
}

.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-page .service-selected {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-weight: 600;
}

.thanks-page a {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
}
