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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 15px;
    transition: color 0.3s;
}

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

.editorial-container {
    max-width: 100%;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d4d4d4;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.93);
}

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

.hero-subtitle {
    font-size: 19px;
    color: #4a4a4a;
    font-style: italic;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
}

.story-intro {
    background-color: #ffffff;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-intro p {
    margin-bottom: 24px;
    font-size: 17px;
}

.section-heading {
    font-size: 32px;
    margin: 48px 0 24px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.inline-image {
    margin: 48px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e8;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-inline {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #2c2c2c;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.btn-select-service {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

.btn-select-service.selected {
    background-color: #4a9d5f;
}

.trust-section {
    background-color: #ffffff;
}

.testimonial-block {
    margin: 32px 0;
    padding: 24px;
    border-left: 3px solid #d4d4d4;
    background-color: #fafafa;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.testimonial-block cite {
    font-size: 14px;
    color: #6a6a6a;
    font-style: normal;
}

.cta-inline {
    background-color: #f7f7f7;
    padding: 80px 0;
}

.form-editorial {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 32px;
}

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    border-radius: 4px;
    display: block;
}

.form-notice.hidden {
    display: none;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

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

.scientific-references {
    background-color: #fafafa;
    padding: 40px 0;
}

.scientific-references h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

.disclaimer-section {
    background-color: #e8e8e8;
    padding: 40px 0;
}

.disclaimer-text {
    font-size: 13px;
    color: #5a5a5a;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 48px 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-info {
    font-size: 14px;
    color: #d4d4d4;
}

.footer-info p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-cookie-accept {
    background-color: #4a9d5f;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #3d8450;
}

.btn-cookie-reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a5a5a;
}

.page-header {
    background-color: #f7f7f7;
    padding: 60px 5%;
    text-align: center;
}

.page-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 20px;
    margin: 24px 0 12px 0;
    color: #2c2c2c;
}

.content-section p,
.content-section ul {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.content-section ul {
    padding-left: 24px;
}

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

.about-hero {
    background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #d4d4d4;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 60px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e0e0e0;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
}

.contact-info {
    background-color: #f7f7f7;
    padding: 32px;
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 80px auto;
    padding: 60px 24px;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-detail {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.btn-back:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-editorial {
        height: 400px;
    }

    .narrow-content {
        padding: 40px 16px;
    }

    .section-heading {
        font-size: 26px;
    }

    .service-card-editorial {
        padding: 24px 16px;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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