/* Reset and Base */
* {
    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: #2c2c2c;
    background: #fafafa;
}

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

/* Navigation - Minimal */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

/* Editorial Container */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Hero Editorial */
.hero-editorial {
    text-align: center;
    padding: 80px 0 60px;
}

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

.lead-text {
    font-size: 22px;
    color: #5a5a5a;
    line-height: 1.5;
    font-weight: 300;
}

/* Images */
.inline-image-wide,
.inline-image-narrow {
    margin: 48px 0;
    background-color: #e8e8e8;
}

.inline-image-wide img,
.inline-image-narrow img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-image-narrow {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Text Blocks */
.text-block {
    margin: 48px 0;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 64px;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2a2a2a;
}

.text-block h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #3a3a3a;
}

/* Editorial List */
.editorial-list {
    list-style: none;
    margin: 32px 0;
}

.editorial-list li {
    font-size: 18px;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    color: #3a3a3a;
}

.editorial-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6a6a6a;
    font-size: 24px;
}

/* Pullquote */
.pullquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
    padding: 48px 0;
    margin: 48px 0;
    color: #2a2a2a;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

/* CTA Inline */
.cta-inline {
    background: #f7f7f7;
    padding: 48px 40px;
    margin: 64px 0;
    text-align: center;
    border-left: 4px solid #4a4a4a;
}

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

/* Services Editorial */
.services-editorial {
    margin: 56px 0;
}

.service-card-editorial {
    background: #fff;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid #e0e0e0;
}

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

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

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.service-duration {
    font-size: 15px;
    color: #6a6a6a;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary {
    background: #2a2a2a;
    color: #fff;
}

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

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

.btn-secondary:hover {
    background: #2a2a2a;
    color: #fff;
}

/* Testimonials */
.testimonial-block {
    background: #f9f9f9;
    padding: 32px;
    margin: 24px 0;
    border-left: 3px solid #d0d0d0;
}

.testimonial-block p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2a2a2a;
}

.testimonial-block cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

/* Form Section */
.form-section-editorial {
    background: #fff;
    padding: 56px 48px;
    margin: 64px 0;
    border: 1px solid #e0e0e0;
}

.form-section-editorial h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section-editorial > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a5a5a;
}

.editorial-form {
    max-width: 600px;
}

.form-row {
    margin-bottom: 28px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4a4a4a;
    background: #fff;
}

.form-row textarea {
    resize: vertical;
}

/* Disclaimer */
.disclaimer-section {
    background: #f4f4f4;
    padding: 32px;
    margin: 64px 0 32px;
    border-left: 3px solid #b0b0b0;
}

.disclaimer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #3a3a3a;
    font-weight: 600;
}

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

/* Footer */
.footer-editorial {
    background: #2a2a2a;
    color: #d0d0d0;
    padding: 64px 40px 32px;
    margin-top: 80px;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #4a4a4a;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 14px;
}

/* Thanks Page */
.thanks-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 19px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container .btn-primary {
    margin-top: 32px;
    display: inline-block;
    text-decoration: none;
}

/* About Page - Split Layout */
.about-hero {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background-color: #e8e8e8;
}

.about-hero-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.about-hero-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.about-hero-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-section {
    margin-bottom: 64px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

/* Services Page - Card Grid */
.services-header {
    text-align: center;
    padding: 80px 40px 60px;
    background: #f7f7f7;
}

.services-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 19px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-full {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 48px;
}

.service-card-full h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-card-full .service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #3a3a3a;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a4a4a;
    font-weight: 600;
}

/* Contact Page */
.contact-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-container h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-container > p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 60px;
}

.contact-info {
    background: #f7f7f7;
    padding: 48px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-detail p {
    font-size: 18px;
    color: #2a2a2a;
    line-height: 1.6;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container .last-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

    .pullquote {
        font-size: 22px;
        padding: 32px 0;
    }

    .cta-inline {
        padding: 32px 24px;
    }

    .service-card-editorial {
        padding: 28px;
    }

    .form-section-editorial {
        padding: 40px 24px;
    }

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

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

    .about-hero {
        flex-direction: column;
    }

    .contact-info {
        padding: 32px 24px;
    }
}