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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.2s;
}

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

/* Editorial Container - Narrow Column Layout */
.editorial-container {
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Content Flow - Narrow Reading Column */
.content-flow {
    padding: 60px 30px 100px;
}

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

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.intro-graf {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.narrow-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 56px 0 24px;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin: 40px 0 16px;
    color: #2a2a2a;
}

.narrow-content ul,
.narrow-content ol {
    margin: 24px 0 24px 32px;
}

.narrow-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

/* Inline Images */
.inline-image {
    margin: 48px 0;
    background-color: #f5f5f5;
}

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

.inline-image figcaption {
    padding: 16px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Blockquote */
.story-quote {
    border-left: 4px solid #1a1a1a;
    padding: 24px 32px;
    margin: 48px 0;
    background-color: #f9f9f9;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

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

/* Inline CTA */
.inline-cta {
    background-color: #f4f7fa;
    padding: 40px 36px;
    margin: 56px 0;
    border-radius: 4px;
}

.inline-cta h3 {
    font-size: 26px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.inline-cta p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-link {
    display: inline-block;
    color: #0066cc;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #004999;
}

/* Service Cards - Editorial Style */
.service-cards-editorial {
    margin: 48px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 2px;
}

.service-card h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.2s;
}

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

/* Form Section */
.contact-form-section {
    margin: 80px 0 60px;
    padding: 48px 40px;
    background-color: #fafafa;
    border-radius: 4px;
}

.contact-form-section h2 {
    margin-top: 0;
}

.editorial-form {
    margin-top: 32px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 2px;
    margin-top: 16px;
    transition: background-color 0.2s;
}

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

/* Closing Section */
.closing-section {
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid #e0e0e0;
}

/* Page Header (for non-home pages) */
.page-header {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 30px 40px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
}

/* Service Detail Section */
.service-detail-section {
    margin: 64px 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8e8e8;
}

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

.price-tag {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 2px;
    margin: 16px 0 24px;
}

.service-includes {
    background-color: #f9f9f9;
    padding: 24px 32px;
    margin: 32px 0;
    border-left: 3px solid #1a1a1a;
}

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

/* Contact Page Styles */
.contact-info-section {
    margin: 48px 0;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    pointer-events: none;
    user-select: text;
}

.contact-approach,
.contact-expectations,
.location-context {
    margin: 56px 0;
}

.expectations-list {
    margin-left: 0;
    list-style-position: inside;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #28a745;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-page-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 32px;
}

.thanks-service-confirm {
    background-color: #f4f7fa;
    padding: 20px;
    margin: 32px 0;
    border-radius: 4px;
}

.thanks-next-steps,
.thanks-meanwhile {
    text-align: left;
    margin: 48px 0;
}

.thanks-next-steps h2,
.thanks-meanwhile h2 {
    text-align: center;
    margin-bottom: 24px;
}

.next-steps-list,
.preparation-list {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-cta-section {
    margin-top: 64px;
}

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

.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #333333;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #1a1a1a;
    border-radius: 2px;
    transition: all 0.2s;
}

.cta-button-secondary:hover {
    background-color: #f5f5f5;
}

/* Legal Content */
.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-content table th,
.legal-content table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

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

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 30px 30px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.2s;
}

.cookie-btn.accept {
    background-color: #28a745;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #218838;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.cookie-link {
    color: #b0b0b0;
    font-size: 13px;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #ffffff;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

    .narrow-content p,
    .narrow-content li {
        font-size: 17px;
    }

    .intro-graf {
        font-size: 20px;
    }

    .narrow-content h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 24px;
    }

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

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

    .cookie-content p {
        min-width: auto;
    }

    .cookie-actions {
        justify-content: center;
    }
}