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

/* Ad disclosure */
.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f5c6cb;
}

/* Navigation - minimal style */
.nav-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e1e8ed;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Editorial wrapper - EDITORIAL STORY archetype */
.editorial-wrapper {
    background-color: #ffffff;
}

/* Hero section - editorial style */
.hero-editorial {
    margin-bottom: 48px;
}

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-title {
    max-width: 800px;
    margin: 48px auto 16px;
    padding: 0 24px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #1a1a1a;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 1.3rem;
    text-align: center;
    color: #555555;
    font-weight: 300;
}

/* Content narrow - centered article layout */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.opening-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.content-narrow p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-top: 56px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-narrow h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.inline-image figcaption {
    padding: 16px 0;
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
    text-align: center;
}

/* Lists */
.insight-list {
    margin: 32px 0;
    padding-left: 24px;
}

.insight-list li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.cta-link.secondary {
    background-color: #95a5a6;
    margin-left: 16px;
}

.cta-link.secondary:hover {
    background-color: #7f8c8d;
}

/* Testimonials */
.testimonial {
    margin: 48px 0;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #e67e22;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

/* Services - editorial style with cards */
.services-editorial {
    margin: 48px 0;
}

.service-card {
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e1e8ed;
}

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

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

.service-card p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-card img {
    width: 100%;
    height: auto;
    margin: 24px 0;
    background-color: #f0f0f0;
    display: block;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
    margin: 24px 0;
}

.select-service {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Service card detailed (for services page) */
.service-card-detailed {
    margin-bottom: 80px;
}

.service-card-detailed img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    background-color: #f0f0f0;
}

.service-card-detailed h2 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card-detailed ul {
    margin: 24px 0;
    padding-left: 24px;
}

.service-card-detailed li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e67e22;
    margin: 32px 0 24px;
}

/* Form section */
.form-section {
    margin: 80px 0 64px;
    padding: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section > p {
    margin-bottom: 32px;
    color: #555555;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #ffffff;
}

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

.submit-btn {
    padding: 16px 48px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Disclaimer */
.disclaimer-section {
    margin-top: 64px;
    padding: 24px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #856404;
    margin: 0;
}

/* Page header */
.page-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 32px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.header-intro {
    font-size: 1.25rem;
    color: #555555;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 56px 0 24px;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

/* Contact page */
.contact-info {
    margin: 48px 0;
}

.contact-block {
    margin-bottom: 48px;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks page */
.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    padding: 48px 24px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 48px;
    color: #2c3e50;
}

.thanks-info {
    max-width: 600px;
    margin: 0 auto 48px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
}

.thanks-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

/* Legal content */
.legal-content {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 16px;
        font-size: 0.9rem;
    }

    .content-narrow {
        padding: 32px 16px 48px;
    }

    .form-section {
        padding: 32px 24px;
    }

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

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

    .thanks-content h1 {
        font-size: 1.8rem;
    }

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

    .cta-link.secondary {
        margin-left: 0;
    }
}