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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

.main-nav {
    background: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-text-narrow {
    text-align: center;
    margin-bottom: 40px;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.hero-image-wrapper {
    width: 100%;
    margin: 40px 0;
}

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

.content-section {
    margin: 80px 0;
}

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--secondary-color);
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bg-light {
    background: var(--light-bg);
    padding: 60px 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.bg-dark {
    background: var(--secondary-color);
    color: #fff;
    padding: 60px 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.bg-dark h2,
.bg-dark p {
    color: #fff;
}

.content-image {
    margin: 40px 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.inline-cta-box {
    background: var(--accent-color);
    color: #fff;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
    border-radius: 8px;
}

.cta-text {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--accent-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.quote-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.quote-section blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary-color);
}

.quote-section cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.services-preview {
    margin: 80px 0;
    padding: 60px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.btn-service {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.urgency-box {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    margin: 80px 0;
    border-radius: 8px;
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 24px;
}

.btn-primary-large {
    display: inline-block;
    background: #fff;
    color: var(--accent-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.form-section {
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

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

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-section {
    margin-bottom: 100px;
}

.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

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

.sticky-cta-btn {
    display: block;
    background: var(--accent-color);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

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

.contact-info {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

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

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.thanks-message {
    margin-bottom: 40px;
}

.thanks-message .lead-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-message a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-message a:hover {
    text-decoration: underline;
}

.highlight-service {
    font-weight: 700;
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 32px;
    }

    .intro-lead {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section p {
        font-size: 16px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 14px;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .quote-section blockquote {
        font-size: 20px;
    }

    .urgency-box {
        padding: 30px 20px;
    }

    .form-section {
        padding: 40px 20px;
    }

    .thanks-content {
        padding: 40px 20px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}