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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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;
}

.cookie-content a {
    color: #4ecdc4;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4ecdc4;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #45b8b0;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.btn-reject:hover {
    background-color: #333;
    border-color: #888;
    transform: translateY(-2px);
}

.header-editorial {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4ecdc4;
}

.editorial-layout {
    min-height: 100vh;
}

.hero-story {
    margin-bottom: 80px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #e8f4f3;
    overflow: hidden;
    margin-bottom: 60px;
}

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

.story-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.story-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.intro-large {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.narrow-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-content p {
    margin-bottom: 24px;
    color: #34495e;
    line-height: 1.8;
}

.narrow-content ul,
.narrow-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.narrow-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #34495e;
}

.inline-image-block {
    margin: 60px 0;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: #7f8c8d;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

.citation {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #45b8b0;
}

.services-preview-editorial {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 100px 0;
}

.service-cards-stacked {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card-editorial p {
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #4ecdc4;
    margin: 24px 0;
}

.cta-inline {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.trust-section {
    background-color: #f0f8f7;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 80px auto;
}

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

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section-editorial {
    background-color: #2c3e50;
    padding: 100px 0;
    margin: 100px 0 0 0;
    color: #ffffff;
}

.form-section-editorial h2 {
    color: #ffffff;
}

.form-section-editorial p {
    color: #ecf0f1;
}

.contact-form-editorial {
    margin-top: 48px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #4a5f7f;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #34495e;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #4ecdc4;
    color: #1a1a1a;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #45b8b0;
    transform: translateY(-2px);
}

.scientific-references {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 80px;
}

.references-list {
    counter-reset: reference-counter;
    list-style: none;
    padding-left: 0;
}

.references-list li {
    counter-increment: reference-counter;
    margin-bottom: 16px;
}

.references-list li::before {
    content: "[" counter(reference-counter) "] ";
    font-weight: 700;
    color: #4ecdc4;
}

.references-list a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #4ecdc4;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 60px 0;
    margin: 80px 0 0 0;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p,
.footer-column li {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 0;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 48px;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.about-hero,
.services-intro,
.contact-intro {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.service-detail-card {
    margin-bottom: 100px;
}

.service-detail-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-description {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 40px;
}

.service-features {
    margin: 32px 0;
    padding-left: 24px;
}

.service-features li {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
}

.service-image-container {
    margin: 48px 0;
    background-color: #e8f4f3;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #4ecdc4;
    margin: 40px 0;
}

.cta-service {
    background-color: #4ecdc4;
    color: #1a1a1a;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background-color: #45b8b0;
    transform: translateY(-2px);
}

.services-footer {
    background-color: #f0f8f7;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
}

.btn-contact {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.contact-details-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

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

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

.email-text {
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-image-container {
    flex: 1;
    min-width: 320px;
    background-color: #e8f4f3;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-note {
    background-color: #f0f8f7;
    padding: 48px 40px;
    border-radius: 12px;
}

.cta-section-about {
    background-color: #2c3e50;
    padding: 80px 0;
    margin-top: 80px;
    color: #ffffff;
}

.cta-section-about h2 {
    color: #ffffff;
}

.cta-section-about p {
    color: #ecf0f1;
    font-size: 18px;
}

.cta-section-about a {
    color: #4ecdc4;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-section-about a:hover {
    color: #45b8b0;
}

.thanks-content {
    padding: 120px 0;
}

.thanks-center {
    text-align: center;
}

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

.thanks-details {
    background-color: #f0f8f7;
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
}

.thanks-details p {
    margin: 0;
    font-size: 18px;
}

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

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin-top: 32px;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 60px;
    position: relative;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #4ecdc4;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #4ecdc4;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #45b8b0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 48px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.legal-table th,
.legal-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-table td {
    color: #34495e;
}

.legal-update {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 2px solid #e0e0e0;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

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

    .intro-large {
        font-size: 20px;
    }

    .narrow-content h2 {
        font-size: 28px;
    }

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

    .price {
        font-size: 28px;
    }

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

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

    .contact-details-section {
        flex-direction: column;
        gap: 48px;
    }

    .hero-image-container {
        height: 400px;
    }

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

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