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

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

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

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

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

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

.nav-links a:hover {
    color: #0066cc;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero-editorial {
    padding: 60px 0 40px;
}

.hero-text-centered {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
    margin-bottom: 50px;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.hero-img-editorial {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.text-flow-section {
    padding: 50px 0;
}

.text-flow-section h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.text-flow-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #0052a3;
}

.cta-link-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.cta-link-secondary:hover {
    background-color: #e0e0e0;
}

.highlight-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin: 60px 0;
}

.highlight-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-list {
    margin: 25px 0 25px 25px;
    font-size: 18px;
    line-height: 1.8;
}

.content-list li {
    margin-bottom: 12px;
    color: #3a3a3a;
}

.testimonial-section {
    padding: 60px 0;
    background-color: #fefefe;
}

.testimonial {
    border-left: 4px solid #0066cc;
    padding-left: 25px;
    margin: 35px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: #777;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-preview {
    padding: 60px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 30px;
    margin: 30px 0;
}

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

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #0052a3;
}

.cta-section {
    background-color: #f5f5f5;
    padding: 70px 0;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    margin-top: 35px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    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 select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #0066cc;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #fff9e6;
    padding: 40px 0;
    margin: 60px 0 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    padding: 20px;
    border-left: 3px solid #ffc107;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 17px;
    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: 10px;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #0066cc;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #0052a3;
}

.cookie-reject {
    background-color: #e8e8e8;
    color: #333;
}

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

.page-header {
    padding: 60px 0 30px;
    text-align: center;
}

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

.services-full {
    padding: 40px 0;
}

.service-detail {
    margin: 60px 0;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.price-detail {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 25px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.legal-page {
    padding: 40px 0 60px;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 20px 0 20px 25px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-details {
    margin: 50px 0;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-confirmation {
    background-color: #e8f4ff;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
    font-size: 17px;
    color: #333;
    margin: 25px 0;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.values-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin: 60px 0;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.value-item {
    margin: 35px 0;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .text-flow-section h2,
    .service-detail h2,
    .cta-section h2 {
        font-size: 26px;
    }

    .text-flow-section p,
    .service-detail p {
        font-size: 16px;
    }

    .service-card {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

    .thanks-section h1 {
        font-size: 32px;
    }
}