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

:root {
    --primary: #2c3e50;
    --accent: #e74c3c;
    --text: #34495e;
    --light-bg: #f8f9fa;
    --border: #dfe6e9;
    --white: #ffffff;
    --dark: #1a1a1a;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--accent);
}

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

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

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

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

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

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

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

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

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

.article-hero {
    margin-bottom: 4rem;
}

.hero-narrow {
    text-align: left;
    margin-bottom: 2rem;
}

.eyebrow {
    display: block;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hero-image {
    width: 100%;
    margin: 2rem 0;
}

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

.article-body {
    margin-top: 3rem;
}

.content-narrow {
    max-width: 680px;
}

h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 2rem 0 1rem 0;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-cta {
    background: var(--light-bg);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.btn-inline {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-inline:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.inline-figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

figcaption {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.75rem;
    font-style: italic;
    text-align: center;
}

.highlight-box {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.15rem;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--accent);
    font-weight: 600;
}

.btn-text-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.05rem;
    margin: 2rem 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    transform: translateX(5px);
}

.testimonial {
    background: var(--light-bg);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

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

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

.service-intro {
    margin: 4rem 0 2rem 0;
    text-align: center;
}

.service-intro h2 {
    margin-top: 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent);
    background: #fff5f5;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.35rem;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.btn-service-select:hover {
    background: #1a252f;
}

.service-card.selected {
    border-color: var(--accent);
    background: #fff5f5;
}

.service-card.selected .btn-service-select {
    background: var(--accent);
}

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

.form-section.hidden {
    display: none;
}

.form-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

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

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

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

.final-cta h2 {
    color: var(--white);
    margin-top: 0;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

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

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

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

.footer-column p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .form-section {
        padding: 2rem 1.5rem;
    }
}

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

.page-header {
    margin-bottom: 3rem;
}

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

.page-content {
    line-height: 1.8;
}

.page-content h2 {
    margin-top: 2.5rem;
}

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

.page-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

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

.contact-info h3 {
    margin-top: 0;
}

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

.contact-info a {
    color: var(--accent);
    text-decoration: none;
}

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

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

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

.service-item h3 {
    margin-top: 0;
    color: var(--primary);
}

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

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-container h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.thanks-container .btn-inline {
    margin-top: 2rem;
}