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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    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 ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-editorial {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-article {
    max-width: 700px;
    margin: 60px auto 100px;
    padding: 0 30px;
}

.article-header {
    margin-bottom: 50px;
}

.article-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #666;
    font-style: italic;
}

.article-image {
    margin: 50px 0;
    width: 100%;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0052a3;
}

.article-quote {
    margin: 50px 0;
    padding: 30px;
    background: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.article-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.article-quote cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.article-image-inline {
    margin: 50px 0;
}

.article-image-inline img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-inline {
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    color: #666;
}

.inline-cta-box {
    margin: 60px 0;
    padding: 40px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.inline-cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.inline-cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ccc;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.services-editorial {
    margin: 50px 0;
}

.service-card {
    padding: 40px;
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.service-card .price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section {
    margin: 60px 0;
    padding: 50px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
}

.form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-service-display {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #0066cc;
    font-size: 17px;
    line-height: 1.8;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #0066cc;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0052a3;
}

.final-cta-section {
    margin: 60px 0;
    padding: 50px;
    background: #f5f5f5;
    text-align: center;
}

.final-cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.final-cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.footer-editorial {
    background: #1a1a1a;
    color: white;
    padding: 60px 30px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

.sticky-cta-btn {
    display: block;
    padding: 15px 30px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #0052a3;
    box-shadow: 0 6px 20px rgba(0,102,204,0.6);
}

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0066cc;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.thanks-page .service-info {
    background: #f5f5f5;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #0066cc;
}

.thanks-page .service-info strong {
    color: #1a1a1a;
}

.page-container {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 30px;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.page-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-container li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #666;
}

.contact-info {
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1a1a1a;
}

.services-list {
    margin: 40px 0;
}

.service-item {
    background: white;
    padding: 30px;
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #666;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

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

    .article-subtitle {
        font-size: 18px;
    }

    .article-content {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-card,
    .form-section,
    .inline-cta-box {
        padding: 25px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

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