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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-subtle: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-heavy: 0 4px 20px rgba(0,0,0,0.15);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: var(--shadow-heavy);
    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;
    min-width: 250px;
    font-size: 0.95rem;
}

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

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

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

.btn-accept {
    background: var(--accent-color);
    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);
}

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

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

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

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

.hero-text-block {
    margin-bottom: 2rem;
}

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

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

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

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.editorial-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.editorial-section.background-subtle {
    background: var(--bg-subtle);
    padding: 3rem 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.editorial-section.background-dark {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.editorial-section.background-dark h2,
.editorial-section.background-dark h3 {
    color: var(--white);
}

.editorial-section.background-dark p {
    color: rgba(255,255,255,0.9);
}

.editorial-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.editorial-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.editorial-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: bold;
    float: left;
    line-height: 1;
    margin-right: 0.1rem;
    color: var(--accent-color);
}

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

.inline-cta-link {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.story-image-inline {
    margin: 2.5rem 0;
}

.story-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.process-flow {
    margin: 2rem 0;
}

.process-step {
    margin-bottom: 2.5rem;
    padding-left: 4rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.section-cta-centered {
    text-align: center;
    margin: 3rem 0;
}

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

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

.testimonial-inline {
    background: var(--bg-subtle);
    padding: 3rem 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

.services-list-editorial {
    margin: 2rem 0;
}

.service-card-editorial {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.service-card-editorial.featured {
    border: 2px solid var(--accent-color);
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-card-editorial h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.service-card-editorial p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.form-intro-text {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: 4px;
}

.selected-service-display {
    background: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.selected-service-display p {
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.editorial-form {
    max-width: 550px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.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(--accent-color);
}

.form-checkbox {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.reason-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.final-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-subtle);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

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

.final-cta-section p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.main-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .editorial-section h2 {
        font-size: 1.8rem;
    }

    .testimonial-inline blockquote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

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

    .sticky-cta {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
}