* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3748;
    --accent-color: #4a5568;
    --light-bg: #f7fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

.nav-minimal {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: var(--spacing-xl);
}

.hero-text-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text-centered h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.editorial-section.bg-light {
    background: var(--light-bg);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 8px;
}

.text-column {
    max-width: 680px;
    margin: 0 auto;
}

.text-column-narrow {
    max-width: 580px;
    margin: 0 auto;
}

.text-column h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.text-column h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-column p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.inline-cta {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #edf2f7;
    border-radius: 6px;
    text-align: center;
}

.cta-link {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-link:hover {
    text-decoration: underline;
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.quote-large {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
    background: #f7fafc;
    font-style: italic;
    font-weight: 500;
}

.card-inline {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border: 1px solid var(--border-color);
}

.card-inline h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

.services-reveal {
    margin-top: var(--spacing-xl);
}

.service-block {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-block p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.service-includes {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.service-includes strong {
    color: var(--primary-color);
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.testimonial {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 12px;
}

.cta-section h2,
.cta-section p {
    color: white;
}

.editorial-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.final-thought {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.closing-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.final-cta {
    margin-top: 3rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.2s;
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: var(--spacing-xl);
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.thanks-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-page p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.thanks-highlight {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-page ul,
.content-page ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-secondary);
}

.content-page li {
    margin-bottom: 0.5rem;
}

.content-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info strong {
    color: var(--primary-color);
}

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

    .lead-text {
        font-size: 1.1rem;
    }

    .text-column h2 {
        font-size: 1.8rem;
    }

    .text-column p {
        font-size: 1rem;
    }

    .quote-large {
        font-size: 1.3rem;
        padding: 1.5rem;
    }

    .editorial-section.bg-light,
    .cta-section {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .editorial-container {
        padding: 2rem 1rem;
    }

    .hero-text-centered h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }
}