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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

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

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

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

.cookie-content a {
    color: #a8c5e8;
    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;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #5a8bb7;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a2e;
}

/* Editorial Container - Narrow Column Article Style */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    background: linear-gradient(135deg, #16213e 0%, #2a3f5f 100%);
    color: #ffffff;
    padding: 6rem 2rem 5rem;
    text-align: center;
}

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

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.bg-light {
    background-color: #f9f9fb;
}

.content-section.bg-dark {
    background-color: #1f2937;
    color: #e8e8e8;
}

.content-section.bg-dark h2,
.content-section.bg-dark h3 {
    color: #ffffff;
}

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-weight: 400;
    color: #1a1a2e;
}

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

/* Inline Images - Editorial Style */
.inline-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Testimonials Inline */
.testimonial-inline {
    border-left: 4px solid #4a7ba7;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #3a3a3a;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
}

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

.btn-text-link {
    color: #4a7ba7;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.btn-text-link:hover {
    border-bottom-color: #4a7ba7;
}

.cta-box {
    background-color: rgba(74, 123, 167, 0.08);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.btn-primary {
    display: inline-block;
    background-color: #4a7ba7;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #5a8bb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a7ba7;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #4a7ba7;
    cursor: pointer;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #4a7ba7;
    color: #ffffff;
}

/* Services Preview Cards */
.services-preview {
    padding: 4rem 0;
    background-color: #fefefe;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #1a1a2e;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7ba7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: #4a7ba7;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: 2px solid #4a7ba7;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #4a7ba7;
    color: #ffffff;
}

.services-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #666;
}

/* Services Detail Page */
.services-detail {
    padding: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    margin-bottom: 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a7ba7;
    margin-bottom: 1.5rem;
}

.service-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.btn-service {
    display: inline-block;
    background-color: #4a7ba7;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #5a8bb7;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #4a7ba7;
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

/* Forms */
.consultation-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.btn-submit {
    background-color: #4a7ba7;
    color: #ffffff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #5a8bb7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 123, 167, 0.3);
}

/* Contact Page */
.contact-info-box {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
}

.contact-detail {
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.contact-detail a {
    color: #4a7ba7;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #666;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-box {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-content {
    text-align: left;
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: #2c5f7c;
    margin: 1.5rem 0;
}

.thanks-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page .content-section {
    padding: 3rem 0;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: #d0d0d0;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.closing-text {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-editorial {
        padding: 4rem 1.5rem 3rem;
    }

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

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

    .narrow-column {
        padding: 0 1.5rem;
    }

    .content-section {
        padding: 3rem 0;
    }

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

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

    .consultation-form {
        padding: 1.5rem;
    }

    .thanks-box {
        padding: 2rem;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

    .cookie-content {
        padding: 0 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}

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

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

    .nav-links {
        font-size: 0.85rem;
    }

    .service-price-large {
        font-size: 1.8rem;
    }
}
