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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8em;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2em;
    margin-top: 1.5em;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

ul, ol {
    margin-bottom: 1.2em;
    padding-left: 2em;
}

li {
    margin-bottom: 0.5em;
}

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

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

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95em;
    color: var(--text-medium);
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-header {
    padding: 4rem 5% 3rem;
    max-width: 740px;
    margin: 0 auto;
}

.header-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85em;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.category {
    color: var(--secondary-color);
    font-weight: 600;
}

.main-headline {
    font-size: 3.2em;
    line-height: 1.15;
    margin-bottom: 0.5em;
}

.subtitle {
    font-size: 1.3em;
    color: var(--text-medium);
    line-height: 1.5;
    font-family: 'Georgia', serif;
    font-weight: 400;
}

.hero-image {
    margin-top: 2.5rem;
    width: 100%;
}

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

.story-intro, .story-section, .insight-section, .problem-section,
.solution-section, .testimonial-section, .deep-insight, .urgency-section,
.benefits-section, .final-push, .order-section {
    padding: 3rem 5%;
    max-width: 740px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.25em;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.content-with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.highlight-quote {
    font-size: 1.4em;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-color);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.editorial-quote {
    font-size: 1.3em;
    line-height: 1.6;
    font-style: italic;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.cta-link {
    font-size: 1.1em;
    color: var(--accent-color);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.stats-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 0.95em;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.section-divider {
    width: 100%;
    margin: 4rem 0;
}

.section-divider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-break {
    width: 100%;
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.service-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-white);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-block {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    margin: 3rem 0;
}

.cta-block h3 {
    margin-bottom: 1.5rem;
}

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

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

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

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

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15em;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95em;
    color: var(--text-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.insight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.insight-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.urgency-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 3rem 5%;
    max-width: 740px;
    margin: 3rem auto;
    border-radius: 4px;
}

.urgency-cta {
    text-align: center;
    margin-top: 2rem;
}

.urgency-text {
    font-size: 1.2em;
    margin-bottom: 1.5rem;
}

.btn-urgent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

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

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

.benefit-box {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.benefit-box h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.benefit-box p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    background: var(--bg-white);
}

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

.btn-submit {
    padding: 1.2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-note {
    font-size: 0.85em;
    color: var(--text-light);
    text-align: center;
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.editorial-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
}

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

.footer-brand h3 {
    color: var(--bg-white);
    font-size: 1.5em;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

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

.footer-column h4 {
    color: var(--bg-white);
    font-size: 1.1em;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.7rem;
    font-size: 0.95em;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.page-header {
    padding: 4rem 5% 2rem;
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}

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

.legal-content {
    padding: 2rem 5%;
}

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

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

.contact-section {
    padding: 2rem 5%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin-top: 1rem;
}

.contact-image {
    width: 100%;
}

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

.services-intro {
    padding: 2rem 5%;
}

.services-list {
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.service-detailed {
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--bg-light);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8em;
}

.service-price {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-body {
    padding: 2rem;
}

.service-body h4 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.service-body ul {
    margin-top: 1rem;
}

.service-duration {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s;
}

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

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

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

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.85em;
    font-weight: 700;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-cta {
    padding: 3rem 5%;
    text-align: center;
}

.thanks-section {
    padding: 4rem 5%;
    text-align: center;
}

.thanks-icon {
    font-size: 4em;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: left;
    max-width: 600px;
}

.next-steps {
    margin-top: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-info {
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    max-width: 600px;
    text-align: left;
}

.thanks-cta {
    margin: 3rem auto;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.social-proof {
    margin: 3rem auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    max-width: 600px;
}

.service-confirmation {
    padding: 1.5rem;
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.service-confirmation h3 {
    color: #155724;
    margin-bottom: 0.5rem;
}

.service-confirmation p {
    color: #155724;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95em;
    text-align: center;
}

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

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

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

.btn-accept {
    background: #27ae60;
    color: var(--bg-white);
}

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

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

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

.cookie-banner.hidden {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        gap: 2.5rem;
    }

    .stats-block {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }

    .content-with-image {
        flex-direction: row;
        align-items: flex-start;
    }

    .text-block {
        flex: 2;
    }

    .inline-image {
        flex: 1;
        margin: 0;
    }

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

    .benefit-box {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .services-preview {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

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

    .footer-brand {
        flex: 0 0 40%;
    }

    .footer-links {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-grid {
        flex-direction: row;
        align-items: flex-start;
    }

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

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

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

@media (min-width: 1024px) {
    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-box {
        flex: 1;
    }

    .services-preview {
        flex-direction: column;
    }

    .service-card {
        flex: 1;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .main-headline {
        font-size: 2.2em;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85em;
    }

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

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

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