/* Reset and 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: #2a2a2a;
    background-color: #fafafa;
}

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

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

a:hover {
    color: #0d3f52;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    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;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #1a5f7a;
    color: #fff;
}

.btn-accept:hover {
    background-color: #0d3f52;
}

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

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

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

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a5f7a;
}

/* Editorial Layout - Narrow Centered */
.editorial-layout {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
    background-color: #f8f8f8;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 2.5rem;
}

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

.hero-intro {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 4px;
}

/* Content Blocks */
.content-block {
    padding: 3.5rem 0;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 600;
}

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

.content-block p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

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

.content-block li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Inline Images */
.inline-image {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

/* Highlight Section */
.highlight-section {
    background-color: #f5f9fa;
    padding: 3rem 0;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

/* Inline CTAs */
.inline-cta {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.cta-box {
    background-color: #1a5f7a;
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.cta-box p {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-family: 'Arial', sans-serif;
}

.cta-link {
    display: inline-block;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: rgba(255,255,255,0.3);
}

.inline-cta-secondary {
    max-width: 680px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.btn-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    color: #1a5f7a;
    font-weight: 600;
    border-bottom: 2px solid #1a5f7a;
    padding-bottom: 0.2rem;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #0d3f52;
    border-color: #0d3f52;
}

/* Services Editorial */
.services-editorial {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-item p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.btn-service {
    font-family: 'Arial', sans-serif;
    padding: 0.9rem 2rem;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1a1a1a;
}

/* Testimonials */
.testimonial-section {
    background-color: #f8f8f8;
}

.testimonial {
    font-style: italic;
    border-left: 4px solid #1a5f7a;
    padding-left: 1.5rem;
}

.testimonial p {
    font-size: 1.15rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #777;
}

/* Form Section */
.form-section {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.editorial-form {
    background-color: #f8f8f8;
    padding: 2.5rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    font-family: 'Arial', sans-serif;
    width: 100%;
    padding: 1rem;
    background-color: #1a5f7a;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    background-color: #f5f9fa;
    padding: 3rem 0;
}

.final-cta p {
    font-size: 1.15rem;
    text-align: center;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background-color: #f8f8f8;
}

.page-header h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.service-detail {
    margin-bottom: 4rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.service-header {
    background-color: #f8f8f8;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.service-price-large {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1.2rem;
    color: #555;
}

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.7rem;
}

/* Contact Info */
.contact-info {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #1a5f7a;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    color: #555;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.thanks-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    background-color: #f5f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    font-family: 'Arial', sans-serif;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
}

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

.btn-primary,
.btn-secondary {
    font-family: 'Arial', sans-serif;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #fff;
}

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

.btn-secondary {
    background-color: #f8f8f8;
    color: #2a2a2a;
    border: 1px solid #ddd;
}

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

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.updated {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2.5rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-section ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.gdpr-table thead,
.cookies-table thead {
    background-color: #f8f8f8;
}

.gdpr-table th,
.cookies-table th {
    padding: 0.8rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.gdpr-table td,
.cookies-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #e5e5e5;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #999;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    font-family: 'Arial', sans-serif;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #0d3f52;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

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

    .contact-info {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-item {
        flex: 1;
    }
}

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

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .hero-intro {
        font-size: 1.1rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .sticky-cta {
        right: 1rem;
        bottom: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }
}
