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

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fefefe;
}

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

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

a:hover {
    color: #0d3a4f;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    color: #555;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #ddd;
}

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

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 16px;
    color: #444;
    font-family: Arial, sans-serif;
}

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

/* Editorial Container - Article-like Layout */
.editorial-container {
    background-color: #fefefe;
}

.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

/* Hero - Editorial Style */
.hero-editorial {
    position: relative;
    margin: 0 -30px 50px;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 600px;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
    color: #fff;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Page Header - Editorial */
.page-header-editorial {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Content Narrow - Centered Text */
.content-narrow {
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

/* Inline Image Blocks */
.inline-image-block {
    margin: 50px 0;
    background-color: #f5f5f5;
}

.inline-image {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.image-caption {
    padding: 15px 20px;
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    background-color: #f5f5f5;
}

/* Inline CTAs */
.cta-inline {
    text-align: center;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.btn-text-link {
    font-size: 1.1rem;
    color: #1a5a7a;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid #1a5a7a;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    background-color: #1a5a7a;
    color: #fff;
}

/* Services Cards - Editorial Style */
.services-cards-editorial {
    margin: 40px 0;
}

.service-card-editorial {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-card-editorial h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
}

.duration {
    font-size: 0.95rem;
    color: #666;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5a7a;
}

.btn-select-service {
    background-color: #1a5a7a;
    color: #fff;
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Arial, sans-serif;
}

.btn-select-service:hover {
    background-color: #0d3a4f;
}

/* Services Detailed */
.services-detailed {
    margin: 40px 0;
}

.service-detailed {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-image-wrapper {
    margin-bottom: 25px;
    background-color: #f0f0f0;
}

.service-image {
    width: 100%;
    height: 500px;
}

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 25px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.meta-item {
    font-size: 0.9rem;
    color: #666;
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5a7a;
}

.service-includes {
    background-color: #f9f9f9;
    padding: 20px 30px;
    margin: 25px 0;
}

.service-includes li {
    color: #444;
}

/* Practical Info */
.practical-info {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 50px 0;
}

.practical-info h2 {
    margin-top: 0;
}

.practical-info p {
    margin-bottom: 15px;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a5a7a;
}

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

.editorial-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: Georgia, serif;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #1a5a7a;
    color: #fff;
    padding: 15px 40px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Arial, sans-serif;
}

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

/* Testimonial Inline */
.testimonial-inline {
    margin: 50px 0;
    padding: 40px 30px;
    background-color: #f0f4f7;
    border-left: 5px solid #1a5a7a;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: #2a2a2a;
}

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

/* Disclaimer Box */
.disclaimer-box {
    margin: 60px 0 40px;
    padding: 25px 30px;
    background-color: #fff9e6;
    border: 1px solid #e6d89f;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer-box strong {
    color: #8b6914;
}

/* Contact Info - Editorial */
.contact-info-editorial {
    margin: 40px 0;
}

.contact-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-block:last-child {
    border-bottom: none;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-top: 0;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 10px 15px;
    display: inline-block;
    color: #333;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    margin: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a5a7a;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 60px 30px;
}

.thanks-message h1 {
    color: #1a5a7a;
    margin-bottom: 20px;
}

.confirmation-details {
    background-color: #f0f4f7;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h2 {
    margin-top: 0;
    font-size: 1.4rem;
}

.confirmation-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.steps-list {
    background-color: #f9f9f9;
    padding: 20px 20px 20px 50px;
    margin-top: 20px;
}

.steps-list li {
    margin-bottom: 15px;
}

.preparation-tips {
    text-align: left;
    margin: 40px 0;
}

.preparation-tips ul {
    background-color: #fff9e6;
    padding: 20px 20px 20px 50px;
    margin-top: 20px;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1a5a7a;
    font-family: Arial, sans-serif;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #1a5a7a;
}

.btn-secondary:hover {
    background-color: #1a5a7a;
    color: #fff;
}

.support-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 40px;
}

/* Legal Content */
.legal-content h2 {
    color: #1a5a7a;
    margin-top: 40px;
}

.legal-content h3 {
    color: #333;
    font-size: 1.2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #1a5a7a;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* Footer - Editorial */
.footer-editorial {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 30px 30px;
    margin-top: 100px;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-nav a {
    color: #ccc;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

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

.footer-email {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #999;
}

.footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #6db3d8;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: #1a5a7a;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #0d3a4f;
}

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

.btn-cookie-alt:hover {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-editorial {
        margin: 0 -30px 30px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-overlay {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .editorial-flow {
        padding: 40px 20px 60px;
    }

    .nav-wrapper {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

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

    .form-section {
        padding: 30px 20px;
    }
}
