:root {
    --primary-color: #2c3e50;
    --accent-color: #8e44ad;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --hover-color: #6c3483;
}

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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-editorial {
    padding: 60px 20px 40px;
    background: var(--light-bg);
}

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

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-image-editorial {
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-flow {
    background: var(--white);
}

.story-section {
    padding: 80px 20px;
}

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

.story-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 32px 0 16px;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.inline-image-wrapper {
    margin: 40px 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--light-bg);
}

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

.benefit-list {
    margin: 24px 0;
    padding-left: 24px;
}

.benefit-list li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #444;
}

.cta-inline {
    padding: 60px 20px;
    background: var(--accent-color);
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-left: 12px;
}

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

.testimonial-inline {
    padding: 60px 20px;
    background: var(--light-bg);
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 24px;
    font-style: italic;
}

.testimonial p {
    font-size: 20px;
    color: #555;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.services-form-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

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

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 16px 0;
}

.btn-select {
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.service-card.selected {
    border: 2px solid var(--accent-color);
    background: #f3e5f5;
}

.contact-form-editorial {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.contact-form-editorial h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta-editorial {
    padding: 80px 20px;
    background: var(--primary-color);
    text-align: center;
}

.final-cta-editorial h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 16px;
}

.final-cta-editorial p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: var(--white);
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.services-detailed {
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
}

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

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

.service-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.additional-service {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    padding: 24px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.thanks-content {
    text-align: center;
    padding: 100px 20px;
}

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

.thanks-message {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 18px;
    color: #555;
    margin-bottom: 12px;
}

.thanks-next-steps {
    text-align: left;
    max-width: 600px;
    margin: 48px auto;
    padding: 32px;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.thanks-next-steps ol {
    padding-left: 20px;
}

.thanks-next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.thanks-cta {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

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

.legal-update {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}

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

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

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

.legal-content a:hover {
    color: var(--hover-color);
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .story-section h2 {
        font-size: 28px;
    }

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

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

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

    .btn-secondary {
        margin-left: 0;
    }
}