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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: Arial, sans-serif;
}

.logo:hover {
    color: #0066cc;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-editorial {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 4rem 1.5rem;
    margin-bottom: 3rem;
}

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

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

.hero-lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Content Narrow - Editorial Style */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.content-narrow h2 {
    font-size: 1.875rem;
    line-height: 1.4;
    margin: 3rem 0 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin: 2rem 0 0.75rem;
    color: #2c2c2c;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #3a3a3a;
}

.content-narrow ul,
.content-narrow ol {
    margin: 1.5rem 0 1.5rem 2rem;
    font-size: 1.125rem;
    color: #3a3a3a;
}

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

/* Inline Images - Editorial Style */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Page Header */
.page-header-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

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

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

.legal-date {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    font-family: Arial, sans-serif;
}

/* Info Boxes */
.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-box p {
    margin-bottom: 0.75rem;
}

.info-box ul {
    margin-left: 1.5rem;
}

/* Testimonials */
.testimonial {
    background-color: #fff;
    border-left: 4px solid #34a853;
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: Arial, sans-serif;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 6px;
    text-align: center;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #e8f0ff;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    font-size: 1.875rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    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-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: #0066cc;
}

.form-group select {
    cursor: pointer;
}

/* Disclaimer */
.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #664d03;
}

.disclaimer p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Service Blocks */
.service-block {
    margin: 3rem 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block h2 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1rem 0;
    font-family: Arial, sans-serif;
}

/* Contact Info */
.contact-info-block {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

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

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: Arial, sans-serif;
}

.contact-detail p {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 0;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding-top: 3rem;
}

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

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

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

/* Legal Content */
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

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

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 1.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;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

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

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

.footer-email {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.footer-copy {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    font-family: Arial, sans-serif;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-family: Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #34a853;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d8e47;
}

.btn-reject {
    background-color: #f0f0f0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

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

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

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

    .content-narrow p,
    .content-narrow ul,
    .content-narrow ol {
        font-size: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .service-price {
        font-size: 1.75rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-editorial {
        padding: 3rem 1rem;
    }

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

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

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

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

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