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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Navigation - Minimal Style */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s;
}

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

/* Editorial Content Container */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

/* Hero Section */
.hero-editorial {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

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

.lead-text {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-top: 20px;
}

/* Content Flow */
.content-flow {
    margin-top: 40px;
}

.content-flow section {
    margin-bottom: 50px;
}

.content-flow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-flow h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c2c2c;
}

.content-flow p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.content-flow ul, .content-flow ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-flow li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 4px;
}

/* Quote Block */
.quote-block {
    border-left: 4px solid #1a1a1a;
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
}

.quote-block p {
    font-size: 20px;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.quote-block cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

/* Method Cards */
.method-card {
    background-color: #f8f8f8;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.method-card h3 {
    margin-top: 0;
    color: #1a1a1a;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 18px;
}

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

/* Testimonial Inline */
.testimonial-inline {
    background-color: #f5f5f5;
    padding: 25px;
    margin: 30px 0;
    border-radius: 6px;
}

.testimonial-inline p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #666;
}

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

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #333;
}

/* Services Section */
.services-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.service-option {
    background-color: #fafafa;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 3px solid #1a1a1a;
}

.service-option h3 {
    margin-top: 0;
    font-size: 26px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Form Section */
.form-section {
    margin-top: 60px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff9e6;
    padding: 30px;
    margin-top: 50px;
    border-radius: 6px;
    border: 1px solid #f0e5c1;
}

.disclaimer-section h2 {
    margin-top: 0;
    font-size: 20px;
    color: #8b6914;
}

.disclaimer-section p {
    font-size: 15px;
    color: #5a4a0f;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s;
}

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

.footer-info {
    text-align: center;
    font-size: 14px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

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

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

.sticky-btn {
    display: block;
    padding: 15px 30px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.update-date {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #2c2c2c;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Service Detailed */
.service-detailed {
    margin-bottom: 50px;
}

.service-details {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 6px;
    margin-top: 20px;
}

.service-details h3 {
    margin-top: 0;
}

.price-box {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 25px;
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Process Steps */
.process-step {
    margin-bottom: 30px;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    border-radius: 4px;
    transition: opacity 0.3s;
    display: inline-block;
}

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

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    opacity: 0.8;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.contact-block {
    background-color: #f8f8f8;
    padding: 35px;
    border-radius: 6px;
}

.contact-block h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.day {
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.time {
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* FAQ */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Thanks Container */
.thanks-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: left;
}

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

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

#serviceInfo {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 19px;
    margin-top: 15px;
}

/* Value Items */
.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .content-flow h2 {
        font-size: 26px;
    }

    .editorial-content {
        padding: 20px 15px;
    }

    .legal-content {
        padding: 20px 15px;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .thanks-container {
        padding: 40px 20px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .contact-details {
        gap: 25px;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
    }
}