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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #28a745;
    --white: #ffffff;
    --gray-light: #ecf0f1;
    --gray-medium: #95a5a6;
    --gray-dark: #7f8c8d;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--gray-light);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--light-bg);
    color: var(--secondary-color);
}

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
}

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

.hero-editorial h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.opening-graf {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.inline-image {
    margin: 3rem 0;
}

.inline-image img {
    width: 100%;
    border-radius: 4px;
}

.section-alt {
    background: var(--light-bg);
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
}

.quote-block blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-block cite {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-style: normal;
}

.cta-inline {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: #2980b9;
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefit-item p {
    margin-bottom: 0;
}

.cta-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c0392b;
    color: var(--white);
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pillars-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.pillar {
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
}

.pillar h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
}

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

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

.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-card .badge {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.service-details h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-details ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

.urgency-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
}

.urgency-box p {
    margin-bottom: 1rem;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.form-section h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    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(--secondary-color);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-cta {
    text-align: center;
    padding: 4rem 1rem;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta-button {
    margin-top: 2rem;
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-content span {
    color: var(--white);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-sticky:hover {
    background: #c0392b;
    color: var(--white);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: var(--gray-medium);
    color: var(--white);
}

.btn-reject:hover {
    opacity: 0.9;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: var(--gray-light);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.page-header {
    padding: 3rem 1rem;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-style: italic;
}

.legal-content h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    margin-top: 2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.values-section,
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.team-member {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 4px;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.team-member p strong {
    color: var(--secondary-color);
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

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

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

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item .note {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-style: italic;
}

.map-placeholder {
    margin: 1.5rem 0;
    background: var(--gray-light);
    min-height: 300px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.location-details ul {
    list-style: none;
    padding-left: 0;
}

.location-details ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.location-details ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.thanks-page {
    text-align: center;
    padding: 4rem 1rem;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

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

.service-confirmation h3 {
    margin-bottom: 0.75rem;
}

.selected-service {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps .step {
    margin-bottom: 1.5rem;
}

.next-steps .step:last-child {
    margin-bottom: 0;
}

.while-you-wait {
    text-align: left;
    margin: 3rem 0;
}

.while-you-wait ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.while-you-wait ul li {
    margin-bottom: 0.75rem;
}

.while-you-wait .note {
    font-size: 0.95rem;
    color: var(--gray-dark);
    font-style: italic;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

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

.contact-reminder h4 {
    margin-bottom: 0.75rem;
}

.comparison-note {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.comparison-note h3 {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border: none;
    }

    .nav-menu a {
        border: none;
        padding: 0.5rem 1rem;
    }

    .hero-editorial h1 {
        font-size: 3rem;
    }

    .section-alt {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1;
        min-width: 250px;
    }

    .pillars-section {
        flex-direction: row;
    }

    .pillar {
        flex: 1;
    }

    .values-section {
        flex-direction: row;
    }

    .value-item {
        flex: 1;
    }

    .stats-section {
        flex-direction: row;
    }

    .stat {
        flex: 1;
    }

    .sticky-content {
        flex-wrap: nowrap;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .contact-info,
    .contact-map {
        flex: 1;
    }

    .action-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 19px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .content-narrow {
        padding: 4rem 2rem;
    }

    .section-alt {
        margin-left: 0;
        margin-right: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}