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

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5a7e;
}

ul {
    list-style-position: inside;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: #555;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2980b9;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.editorial-content {
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: left;
    border-bottom: 3px solid #2c3e50;
    padding-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    font-style: italic;
    font-weight: 400;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.content-block p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

/* Inline Images - Story Flow */
.inline-image {
    margin: 2.5rem 0;
    background-color: #f5f5f5;
}

.inline-image img {
    width: 100%;
    height: auto;
}

/* Inline CTA */
.inline-cta {
    background-color: #ecf0f1;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #2980b9;
}

.inline-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.inline-cta p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a5a7e;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

/* Services Showcase */
.services-showcase {
    margin: 3rem 0;
}

.services-showcase h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #2980b9;
    background-color: #f0f8ff;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
    border-radius: 3px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-select-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    width: 100%;
    margin-top: 1rem;
}

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

/* Form Wrapper */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid #2980b9;
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

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

/* Testimonials */
.testimonial {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #95a5a6;
    font-style: italic;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: 'Arial', sans-serif;
    color: #555;
    font-size: 0.95rem;
}

/* Disclaimer */
.disclaimer-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 4rem;
    font-family: 'Arial', sans-serif;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-section li {
    margin-bottom: 0.625rem;
}

.footer-section a {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-bottom {
    background-color: #1a252f;
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
}

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

.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;
    line-height: 1.5;
}

.cookie-content a {
    color: #3498db;
}

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

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

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.service-image {
    margin: 2rem 0;
    background-color: #f5f5f5;
}

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

.price-tag {
    display: inline-block;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    margin: 1rem 0 1.5rem 0;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #444;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #2980b9;
    font-size: 1.5rem;
    line-height: 1.2;
}

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

.contact-card {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-left: 4px solid #2980b9;
}

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

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.contact-value {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

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

/* Thanks Page */
.thanks-header {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem auto;
    font-weight: 700;
}

.confirmation-details {
    background-color: #f0f8ff;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #2980b9;
}

.service-confirmation h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.selected-service {
    font-size: 1.125rem;
    color: #2980b9;
}

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

.step {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #95a5a6;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    color: #555;
    margin: 0;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.quick-link-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.quick-link-card p {
    color: #555;
    margin: 0;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

/* Legal Content */
.legal-content {
    line-height: 1.8;
}

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

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.legal-section h3,
.legal-section h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.last-updated {
    font-style: italic;
    color: #777;
    margin-top: 2rem;
    font-size: 0.95rem;
}

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

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

    .editorial-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

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

    .article-header h1 {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1.125rem;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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