/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

/* Navigation - Minimal Style for Editorial Archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Sections */
.article-hero {
    margin-bottom: 4rem;
}

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

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

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.article-hero-simple {
    margin-bottom: 3rem;
}

.article-hero-simple h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    letter-spacing: -0.02em;
}

.content-block h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.content-block ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.content-block ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

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

/* Inline CTAs */
.cta-inline {
    background-color: #f7fafc;
    border-left: 4px solid #4299e1;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 0;
    font-size: 1.0625rem;
}

.link-cta {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f7f9fb;
    border-radius: 4px;
    position: relative;
}

.testimonial-inline blockquote {
    font-style: italic;
    position: relative;
}

.testimonial-inline blockquote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: #718096;
    margin-top: 1rem;
}

/* Service Cards - Editorial Style */
.service-cards-editorial {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.service-duration {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2b6cb0;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #3182ce;
    transform: translateY(-1px);
}

.btn-select-service:active {
    transform: translateY(0);
}

/* Form Wrapper */
.form-wrapper {
    background-color: #f7fafc;
    padding: 3rem;
    border-radius: 8px;
    margin: 4rem 0;
}

.form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.form-wrapper > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Form Styles */
.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-notice {
    background-color: #fff5e6;
    border-left: 4px solid #f6ad55;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

.form-notice.success {
    background-color: #e6f7ed;
    border-left-color: #48bb78;
}

.form-notice p {
    margin: 0;
    font-size: 0.95rem;
    color: #2d3748;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a4d8f;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

/* Disclaimer */
.disclaimer-text {
    background-color: #f7f9fb;
    padding: 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 3rem 0;
}

/* Contact Page Styles */
.contact-info {
    margin: 3rem 0;
}

.contact-section {
    margin-bottom: 2.5rem;
}

.contact-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-section p {
    color: #4a5568;
    line-height: 1.7;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-wrapper {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-wrapper h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: left;
}

.thanks-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.service-summary {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-summary h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.service-name {
    font-weight: 600;
    color: #2b6cb0;
    font-size: 1.125rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.1s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2b6cb0;
    color: #ffffff;
    border: 2px solid #2b6cb0;
}

.btn-primary:hover {
    background-color: #1a4d8f;
    border-color: #1a4d8f;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: #f7fafc;
    transform: translateY(-1px);
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content a {
    color: #2b6cb0;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a4d8f;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a0aec0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #38a169;
    transform: translateY(-1px);
}

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

.btn-cookie-reject:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .article-hero h1,
    .article-hero-simple h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.125rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block h3 {
        font-size: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .thanks-actions {
        width: 100%;
    }

    .thanks-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .article-hero h1,
    .article-hero-simple h1 {
        font-size: 1.75rem;
    }
}