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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
}

.editorial-hero {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.editorial-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.subheadline {
    font-size: 20px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.editorial-content {
    font-size: 18px;
    line-height: 1.9;
}

.intro-text {
    font-size: 21px;
    margin-bottom: 25px;
    color: #444;
}

.editorial-content p {
    margin-bottom: 25px;
}

.editorial-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.editorial-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a4a4a;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.content-list {
    margin: 25px 0;
    padding-left: 30px;
}

.content-list li {
    margin-bottom: 15px;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #1a1a1a;
}

.service-card-inline {
    margin: 35px 0;
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.service-card-inline h3 {
    margin-top: 0;
    font-size: 24px;
    color: #1a1a1a;
}

.service-duration {
    font-size: 15px;
    color: #888;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f4f4f4;
    border-radius: 4px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.submit-btn {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff9e6;
    border: 1px solid #f0e0a0;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #e8e8e8;
}

.footer-references {
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-info {
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #2c2c2c;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #fff;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
}

.page-header h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

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

.service-item p {
    margin-bottom: 15px;
    color: #555;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.service-duration-label {
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price-label {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 40px;
}

.thanks-cta a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.thanks-cta a:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 40px 15px;
    }

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

    .subheadline {
        font-size: 18px;
    }

    .editorial-content {
        font-size: 17px;
    }

    .intro-text {
        font-size: 19px;
    }

    .editorial-content h2 {
        font-size: 26px;
    }

    .minimal-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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