* {
    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-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

.article-header {
    margin-bottom: 50px;
}

.header-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
}

.header-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    width: 100%;
    padding: 60px 40px 40px;
}

.header-overlay h1 {
    font-size: 42px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: normal;
}

.page-header-simple {
    margin-bottom: 40px;
}

.page-header-simple h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header-simple .subtitle {
    font-size: 18px;
    color: #666;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

.text-flow p {
    margin-bottom: 25px;
}

.text-flow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-flow h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.text-flow ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.text-flow li {
    margin-bottom: 10px;
}

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

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

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

.quote-block {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #2c2c2c;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.quote-block cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.testimonial-inline {
    margin: 35px 0;
    padding: 25px 30px;
    background-color: #f0f4f8;
    border-left: 3px solid #4a90e2;
}

.testimonial-inline p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
}

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

.cta-inline {
    margin: 30px 0;
}

.btn-text-link {
    color: #2c2c2c;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.btn-text-link:hover {
    opacity: 0.7;
}

.services-cards-editorial {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card-compact {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.service-card-compact h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
}

.service-card-compact p {
    margin-bottom: 15px;
    font-size: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.services-detailed {
    margin: 40px 0;
}

.service-detail-block {
    display: flex;
    gap: 35px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.service-detail-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrap {
    flex: 0 0 280px;
    background-color: #e8e8e8;
}

.service-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    margin-top: 0;
    font-size: 28px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 10px 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    margin-top: 0;
    font-size: 28px;
}

.editorial-form {
    margin-top: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cta-section-editorial {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-section-editorial h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-section-editorial p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.btn-cta-scroll {
    display: inline-block;
    background-color: #ffffff;
    color: #2c2c2c;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-scroll:hover {
    background-color: #f0f0f0;
}

.references-section {
    margin: 60px 0 40px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.references-list {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.references-list li {
    margin-bottom: 10px;
}

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

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

.disclaimer-section {
    margin: 40px 0;
    padding: 25px;
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    font-size: 14px;
    line-height: 1.6;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.contact-info-block {
    margin: 40px 0;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-note {
    margin: 30px 0;
    padding: 20px;
    background-color: #f0f4f8;
    font-size: 15px;
}

.thanks-container {
    text-align: center;
    padding: 60px 30px;
}

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 17px;
    margin: 20px 0;
}

.thanks-next-steps {
    margin: 50px auto;
    max-width: 600px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    font-size: 16px;
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 15px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #444;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.legal-page .text-flow {
    font-size: 16px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .header-image {
        height: 320px;
    }

    .header-overlay h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 17px;
    }

    .text-flow h2 {
        font-size: 26px;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .service-detail-block:nth-child(even) {
        flex-direction: column;
    }

    .service-image-wrap {
        flex: 1;
        width: 100%;
    }

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

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

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