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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #fafbfc;
}

/* Ad Notice Banner */
.ad-notice {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 35px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Content Structure */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    background: #34495e;
}

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

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

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
    border-bottom: 2px solid #e8eef3;
    padding-bottom: 30px;
}

.page-header h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1a252f;
}

.page-subtitle {
    font-size: 18px;
    color: #5a6c7d;
}

/* Content Flow */
.content-flow {
    font-size: 18px;
    line-height: 1.8;
}

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a252f;
    margin-bottom: 28px;
    font-weight: 500;
}

.story-section,
.approach-section,
.trust-section,
.philosophy-section,
.who-section,
.difference-section,
.values-section,
.location-section,
.what-to-expect-section,
.faq-section,
.ready-section,
.contact-details-section,
.services-preview {
    margin: 60px 0;
}

.story-section h2,
.approach-section h2,
.trust-section h2,
.philosophy-section h2,
.who-section h2,
.difference-section h2,
.values-section h2,
.location-section h2,
.what-to-expect-section h2,
.faq-section h2,
.ready-section h2,
.contact-details-section h2,
.services-preview h2,
.services-detailed h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.story-section h3,
.approach-section h3,
.philosophy-section h3,
.what-to-expect-section h3,
.faq-section h3 {
    font-size: 24px;
    margin: 35px 0 16px 0;
    color: #2c3e50;
    font-weight: 600;
}

.story-section p,
.approach-section p,
.trust-section p,
.philosophy-section p,
.who-section p,
.difference-section p,
.values-section p,
.location-section p,
.what-to-expect-section p,
.faq-section p,
.ready-section p,
.contact-details-section p,
.services-preview p {
    margin-bottom: 20px;
}

/* Inline Images */
.inline-image {
    margin: 60px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #e8eef3;
}

.inline-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: #5a6c7d;
    font-style: italic;
    text-align: center;
}

/* Insight Block */
.insight-block {
    background: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 25px 30px;
    margin: 35px 0;
    font-size: 17px;
}

/* Service Cards */
.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-card p {
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

/* Buttons and CTAs */
.cta-inline,
.cta-service,
.submit-btn {
    background: #2980b9;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-inline:hover,
.cta-service:hover,
.submit-btn:hover {
    background: #1f5f8b;
}

.cta-service {
    margin-top: 10px;
}

/* Testimonials */
.testimonial {
    margin: 35px 0;
    padding: 25px 30px;
    background: #f8f9fa;
    border-left: 4px solid #95a5a6;
    font-size: 17px;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
}

/* Principle Blocks */
.principle-block,
.expectation-block {
    margin: 35px 0;
}

.principle-block h3,
.expectation-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

/* Values List */
.values-list {
    list-style: none;
    margin: 25px 0;
}

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

.values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-size: 28px;
    line-height: 1;
}

.values-list strong {
    color: #1a252f;
}

/* Form Styling */
.cta-section-embedded {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 40px 35px;
    margin: 60px 0;
}

.cta-section-embedded h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1dbe3;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Disclaimer */
.disclaimer-section {
    background: #fef9e7;
    border: 1px solid #f9e79f;
    border-radius: 4px;
    padding: 25px 30px;
    margin: 60px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Page Specific */
.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-block {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 30px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

/* FAQ Items */
.faq-item {
    margin: 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #e8eef3;
}

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

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

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

.service-detail-block {
    margin: 60px 0;
    padding-bottom: 50px;
    border-bottom: 2px solid #e8eef3;
}

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

.service-detail-block h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #1a252f;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0 20px 0;
}

.service-detail-block ul {
    margin: 20px 0 20px 25px;
    list-style-type: disc;
}

.service-detail-block li {
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0;
}

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

.confirmation-details {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 25px;
    margin: 35px 0;
    font-size: 17px;
}

.next-steps-block,
.while-waiting-block,
.additional-resources {
    margin: 40px 0;
    text-align: left;
}

.next-steps-list {
    margin: 20px 0 0 25px;
    text-align: left;
}

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

.navigation-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.back-link {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: #d5dbdb;
}

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

.legal-section {
    margin: 45px 0;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 12px 0;
    color: #2c3e50;
}

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

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

/* Cookie Table */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e1e8ed;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .editorial-content {
        padding: 40px 20px;
    }

    .hero-editorial {
        margin: -40px -20px 40px -20px;
    }

    .hero-image-wrapper {
        height: 320px;
    }

    .hero-overlay {
        padding: 40px 25px 25px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .content-flow {
        font-size: 17px;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}
