/* 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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5490;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c2c2c;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #1a5490;
}

/* Editorial Container (Main Archetype) */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

.hero-editorial {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebef 100%);
    text-align: center;
}

.hero-text-center {
    max-width: 700px;
    margin: 0 auto;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-weight: 300;
}

/* Content Narrow (Editorial Style) */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-narrow li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-header-editorial {
    padding: 3rem 2rem;
    background-color: #f5f7fa;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a5490;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4a4a4a;
}

/* CTAs */
.inline-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-link-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-link-inline:hover {
    background-color: #0d3a6b;
    color: white;
}

.cta-section-inline {
    text-align: center;
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.cta-section-inline h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3a6b;
    color: white;
}

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

.service-card-editorial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

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

.service-card-editorial p {
    margin-bottom: 1rem;
}

.service-card-editorial .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0;
}

.select-service-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.select-service-link:hover {
    background-color: #45a049;
    color: white;
}

/* Services Detailed Page */
.services-detailed {
    margin: 2rem 0;
}

.service-detail {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.service-detail h2 {
    margin-top: 0;
}

.service-detail h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.price-highlight {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1rem 0;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5490;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #0d3a6b;
    color: white;
}

.comparison-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 8px;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.thanks-actions {
    margin: 3rem 0;
}

.action-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-link {
    display: block;
    padding: 1rem;
    background-color: #f0f4f8;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.action-link:hover {
    background-color: #e0e8f0;
}

.contact-reminder {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 6px;
}

.contact-reminder h3 {
    margin-top: 0;
}

.closing-text {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #4a4a4a;
    font-style: italic;
}

/* Legal Content */
.legal-content h2 {
    margin-top: 2.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.legal-content strong {
    color: #1a1a1a;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #88c0ff;
}

.footer p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-button {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: #45a049;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0 2rem;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .opening-paragraph {
        font-size: 1.1rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
    }

    .sticky-cta-button {
        text-align: center;
        width: 100%;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
