/* 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: #fafafa;
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.2s;
}

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

/* Editorial Content Structure */
.editorial-content {
    background: #fff;
}

.editorial-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4d4d8;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    padding: 60px 30px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
}

.lead-intro {
    font-size: 22px;
    font-weight: 400;
    max-width: 900px;
    margin: 20px auto 0;
    opacity: 0.95;
}

/* Page Header for other pages */
.page-header-editorial {
    padding: 80px 30px 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-editorial h1 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.header-intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Editorial Body - Narrow Column */
.editorial-body {
    padding: 60px 30px 100px;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.opening-paragraph {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.editorial-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.editorial-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: #2c2c2c;
}

.editorial-body p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.editorial-body ul,
.editorial-body ol {
    margin: 20px 0 25px 25px;
    font-size: 18px;
    line-height: 1.8;
}

.editorial-body li {
    margin-bottom: 12px;
}

/* Inline Images */
.inline-image-left,
.inline-image-right,
.inline-image-center {
    margin: 40px 0;
}

.inline-image-left {
    float: left;
    margin-right: 35px;
    margin-bottom: 25px;
    max-width: 450px;
}

.inline-image-right {
    float: right;
    margin-left: 35px;
    margin-bottom: 25px;
    max-width: 450px;
}

.inline-image-center {
    clear: both;
    text-align: center;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-center img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e5e5e5;
}

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

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline:hover {
    background: #1d4ed8;
}

/* Testimonials */
.testimonial-inline {
    border-left: 4px solid #2563eb;
    padding: 25px 30px;
    margin: 40px 0;
    background: #f8fafc;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    clear: both;
}

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

/* Services Grid (Editorial Style) */
.services-grid-editorial {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
    clear: both;
}

.service-card-editorial {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 6px;
    background: #fff;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin: 0 0 15px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.duration {
    font-size: 15px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    width: 100%;
    padding: 12px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Services Detail Section */
.services-detail-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 40px 0;
}

.service-detail-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.service-image-wrapper {
    width: 100%;
    height: 300px;
    background-color: #e5e5e5;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 35px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin: 0 0 20px;
}

.service-detail-content p {
    margin-bottom: 18px;
}

.service-benefits {
    margin: 25px 0;
    padding-left: 20px;
}

.service-benefits li {
    margin-bottom: 10px;
    font-size: 17px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    clear: both;
}

.form-section h2 {
    font-size: 28px;
    margin: 0 0 15px;
}

.form-section > p {
    margin-bottom: 30px;
    color: #666;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-row input[readonly] {
    background: #f1f5f9;
    color: #666;
}

.submit-btn {
    padding: 14px 32px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-btn:hover {
    background: #15803d;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.email-display {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-note {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

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

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #16a34a;
}

.confirmation-details {
    margin: 50px 0;
    text-align: left;
}

.process-steps {
    list-style: decimal;
    padding-left: 25px;
}

.process-steps li {
    margin-bottom: 15px;
    font-size: 18px;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button:hover {
    background: #1d4ed8;
}

.cta-button.secondary {
    background: #6b7280;
}

.cta-button.secondary:hover {
    background: #4b5563;
}

.additional-info {
    margin-top: 40px;
    font-size: 15px;
    color: #666;
}

/* Legal Content */
.legal-content {
    font-size: 17px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 21px;
    margin: 30px 0 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 30px;
}

.disclaimer-text {
    margin-top: 50px;
    padding: 25px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 1000;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-btn.accept {
    background: #16a34a;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #15803d;
}

.cookie-btn.reject {
    background: #6b7280;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #4b5563;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .editorial-body h2 {
        font-size: 26px;
    }

    .opening-paragraph {
        font-size: 18px;
    }

    .editorial-body p {
        font-size: 17px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        max-width: 100%;
        margin: 30px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cta-button {
        width: 100%;
        text-align: center;
    }
}
