* {
    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: #2c3e50;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    border: 1px solid #dfe6e9;
    padding: 4px 10px;
    border-radius: 3px;
    background-color: #f8f9fa;
}

.editorial-main {
    background-color: #ffffff;
    min-height: 100vh;
}

.story-flow {
    padding-bottom: 60px;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
    background-color: #2c3e50;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    color: #ffffff;
    padding: 60px 40px 40px;
    text-align: center;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 22px;
    font-weight: 300;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.intro-narrative,
.problem-section,
.solution-narrative,
.testimonials-inline,
.process-section,
.contact-form-section,
.trust-section,
.about-narrative,
.services-editorial,
.contact-content,
.cta-section {
    padding: 80px 0;
}

.intro-narrative h2,
.problem-section h2,
.solution-narrative h2,
.process-section h2,
.contact-form-section h2,
.trust-section h3,
.about-narrative h2,
.services-editorial h2,
.contact-content h2,
.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a1a1a;
}

.intro-narrative h3,
.problem-section h3,
.solution-narrative h3,
.process-section h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.intro-narrative p,
.problem-section p,
.solution-narrative p,
.process-section p,
.contact-form-section p,
.trust-section p,
.about-narrative p,
.services-editorial p,
.contact-content p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #34495e;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 8px;
    display: block;
    background-color: #ecf0f1;
}

.problem-block {
    margin: 35px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.problem-block h4 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.problem-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card {
    margin: 50px 0;
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.service-details {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-select-service,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-select-service,
.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-select-service:hover,
.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

.cta-link {
    font-size: 18px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.testimonials-inline {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-inline h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
    border-radius: 6px;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.process-step {
    margin: 35px 0;
}

.process-step h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.editorial-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.selected-service-display {
    padding: 15px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #27ae60;
}

.selected-service-display:empty {
    display: none;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-top: 40px;
    line-height: 1.6;
}

.page-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detailed {
    margin: 60px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-detailed h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detailed h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.service-detailed ul {
    margin: 15px 0;
    padding-left: 25px;
}

.service-detailed li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.service-price-info {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.contact-info-block {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-info-block h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.non-clickable-email {
    font-weight: 600;
    color: #3498db;
    user-select: text;
}

.info-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.faq-item {
    margin: 35px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-section h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #27ae60;
}

.thanks-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.step-item {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
}

.service-confirmation:empty {
    display: none;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-date {
    font-size: 16px;
    color: #7f8c8d;
}

.legal-text {
    padding: 40px 0;
}

.legal-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.non-clickable {
    user-select: text;
    color: #3498db;
}

.cta-section {
    text-align: center;
    background-color: #f8f9fa;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    min-width: 300px;
}

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

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

    .lead-text {
        font-size: 18px;
    }

    .intro-narrative h2,
    .problem-section h2,
    .solution-narrative h2 {
        font-size: 28px;
    }

    .intro-narrative p,
    .problem-section p,
    .solution-narrative p {
        font-size: 17px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .price {
        font-size: 28px;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}