* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.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;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:first-child {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie:first-child:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-cookie.btn-secondary:hover {
    background-color: #333;
    border-color: #999;
}

.ad-disclosure {
    background-color: #fff9e6;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #ffe69c;
}

.header-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2c3e50;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.editorial-flow {
    background-color: #fafafa;
}

.hero-editorial {
    background-color: #ffffff;
    padding-bottom: 48px;
}

.hero-image-container {
    width: 100%;
    height: 460px;
    overflow: hidden;
    background-color: #e8e8e8;
    margin-bottom: 48px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 28px;
}

.story-section {
    background-color: #ffffff;
    padding: 72px 0;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
}

.story-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 48px 0 24px 0;
    font-weight: 700;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.story-section a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: all 0.3s ease;
}

.story-section a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

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

.btn-text-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 4px 0;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
    transform: translateX(4px);
}

.insight-section {
    background-color: #f8f9fa;
    padding: 72px 0;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
}

.insight-section h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.testimonial-inline {
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    padding: 28px 32px;
    margin: 48px 0;
    font-size: 19px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-inline footer {
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.benefits-section {
    background-color: #ffffff;
    padding: 72px 0;
}

.benefits-section h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.benefits-section > .content-narrow > p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 48px;
}

.services-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-item-editorial {
    background-color: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.service-item-editorial h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-item-editorial p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select-service.selected {
    background-color: #27ae60;
}

.btn-select-service.selected:hover {
    background-color: #229954;
}

.form-section {
    background-color: #f8f9fa;
    padding: 72px 0;
}

.form-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-section > .content-narrow > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 36px;
}

.editorial-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.selected-service-display {
    background-color: #e3f2fd;
    border: 2px solid #3498db;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 28px;
    font-size: 17px;
    color: #1565c0;
    font-weight: 600;
    text-align: center;
}

.selected-service-display.has-service {
    background-color: #e8f5e9;
    border-color: #27ae60;
    color: #2e7d32;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 48px 0;
    border-top: 1px solid #f0e5cc;
    border-bottom: 1px solid #f0e5cc;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #5a4a1f;
    text-align: center;
    font-style: italic;
}

.references-section {
    background-color: #ffffff;
    padding: 56px 0;
}

.references-section h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

.references-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    word-break: break-word;
}

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

.footer-minimal {
    background-color: #1a1a1a;
    color: #d1d5db;
    padding: 48px 0 32px 0;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 14px;
    color: #9ca3af;
}

.page-hero {
    background-color: #ffffff;
    padding: 64px 0 32px 0;
}

.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-section {
    background-color: #ffffff;
    padding: 48px 0 72px 0;
}

.contact-info-block {
    margin-bottom: 48px;
}

.contact-info-block h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 36px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    font-weight: 600;
    color: #3498db;
}

.contact-note {
    margin-top: 12px;
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.contact-map-placeholder {
    width: 100%;
    height: 380px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 36px;
    font-weight: 700;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.services-detailed {
    background-color: #ffffff;
    padding: 48px 0 72px 0;
}

.service-detail-item {
    margin-bottom: 64px;
}

.service-detail-item h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 17px;
    color: #5a6c7d;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-service-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-section-centered {
    background-color: #f0f4f8;
    padding: 72px 0;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.btn-primary-centered {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-section {
    background-color: #ffffff;
    padding: 48px 0 72px 0;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 40px;
    font-weight: 500;
}

.legal-section h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.thanks-section {
    background-color: #ffffff;
    padding: 72px 0;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px auto;
}

.thanks-section h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 28px;
}

.service-confirmation {
    background-color: #e8f5e9;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
    font-size: 17px;
    color: #2e7d32;
    font-weight: 600;
}

.thanks-note {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

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

.btn-secondary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-link:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.next-steps-section {
    background-color: #f8f9fa;
    padding: 64px 0;
}

.next-steps-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
    text-align: center;
}

.steps-list {
    list-style-position: inside;
    padding-left: 0;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .hero-editorial h1 {
        font-size: 32px;
    }

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

    .story-section,
    .insight-section,
    .benefits-section,
    .form-section {
        padding: 48px 0;
    }

    .story-section h2,
    .insight-section h2,
    .benefits-section h2 {
        font-size: 26px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}