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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #f4f4f4;
    --color-highlight: #0f3460;
    --color-text: #2a2a2a;
    --color-text-light: #666;
    --color-bg-light: #fafafa;
    --color-bg-dark: #1a1a2e;
    --color-border: #ddd;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: #fff;
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-highlight);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 100%;
}

/* Hero Sections */
.editorial-hero {
    padding: 5rem var(--spacing-medium) 4rem;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.editorial-hero-simple {
    padding: 4rem var(--spacing-medium) 3rem;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.hero-text-centered {
    text-align: center;
}

.hero-text-centered h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-image-inline {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 3rem;
    border-radius: 8px;
}

/* Editorial Sections */
.editorial-section {
    padding: 4rem var(--spacing-medium);
}

.editorial-section.bg-light {
    background: var(--color-bg-light);
}

.editorial-section.bg-accent {
    background: var(--color-accent);
}

.editorial-section.bg-dark {
    background: var(--color-bg-dark);
    color: #fff;
}

.editorial-section.bg-dark h2,
.editorial-section.bg-dark p {
    color: #fff;
}

.narrow-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.editorial-section.bg-dark .narrow-content h2 {
    color: #fff;
}

.narrow-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.narrow-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 6px;
}

.editorial-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-highlight);
    border-left: 4px solid var(--color-highlight);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

.editorial-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: none;
}

.editorial-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.editorial-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
}

/* Service Cards - Editorial Style */
.service-card-editorial {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.editorial-section.bg-accent .service-card-editorial {
    background: #fff;
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card-editorial p {
    margin-bottom: 1rem;
}

.service-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: none;
}

.service-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 1.5rem 0;
}

/* CTAs and Buttons */
.inline-cta {
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid var(--color-highlight);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.inline-cta-strong {
    display: inline-block;
    background: var(--color-highlight);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.inline-cta-strong:hover {
    background: var(--color-primary);
}

.btn-service {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: var(--color-highlight);
}

.btn-cta {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: var(--color-highlight);
}

.btn-cta-light {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-light:hover {
    background: var(--color-accent);
}

/* Forms */
.editorial-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-highlight);
}

.btn-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--color-highlight);
}

/* Contact Info */
.contact-info {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--color-highlight);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    margin-top: 0;
}

/* Process Steps */
.process-step {
    margin-bottom: 2.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    margin-top: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem var(--spacing-medium);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--color-highlight);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.inline-link {
    color: var(--color-highlight);
    text-decoration: none;
    border-bottom: 1px solid var(--color-highlight);
}

.inline-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 3rem var(--spacing-medium) 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: var(--color-primary);
}

.btn-accept:hover {
    background: var(--color-accent);
}

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

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

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

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

    .narrow-content h2 {
        font-size: 1.6rem;
    }

    .editorial-section {
        padding: 3rem 1.5rem;
    }

    .editorial-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .editorial-hero-simple {
        padding: 2.5rem 1.5rem 2rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}