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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-content a {
    color: #ffd700;
}

.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;
}

.btn-accept {
    background: #4a90e2;
    color: #fff;
}

.btn-accept:hover {
    background: #357abd;
}

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

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

.top-nav {
    background: #fff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.editorial-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #000;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.editorial-intro {
    margin-bottom: 2.5rem;
}

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

.drop-cap::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    margin-right: 0.1rem;
    margin-top: 0.1rem;
}

.inline-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #000;
}

.cta-link {
    color: #000;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: padding-left 0.3s;
    display: inline-block;
}

.cta-link:hover {
    padding-left: 0.5rem;
}

.editorial-story {
    margin: 4rem 0;
}

.editorial-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.editorial-story p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.story-image {
    margin: 2rem 0;
}

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

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid #ccc;
    background: #f9f9f9;
    font-style: italic;
    font-size: 1.15rem;
}

blockquote cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.insight-block {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #1a1a1a;
    color: #fff;
}

.insight-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    font-size: 1.05rem;
    line-height: 1.6;
}

.insight-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #ffd700;
}

.inline-image-full {
    margin: 3rem 0;
}

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

.image-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.8rem;
    font-style: italic;
}

.problem-section {
    margin: 4rem 0;
}

.problem-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-section p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
}

.trust-builder {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.trust-builder h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-inline {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7f7f7;
}

.testimonial-inline p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial-inline cite {
    font-size: 0.9rem;
    color: #555;
    font-style: normal;
}

.reveal-section {
    margin: 5rem 0;
}

.reveal-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.reveal-section > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-align: center;
}

.service-card-editorial {
    margin: 2.5rem 0;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    background: #fff;
    position: relative;
}

.service-card-editorial.featured {
    border-color: #000;
    background: #fafafa;
}

.badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #000;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card-editorial h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.service-duration {
    font-size: 0.9rem;
    color: #666;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.service-select {
    width: 100%;
    padding: 0.9rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.service-select:hover {
    background: #000;
}

.service-select.selected {
    background: #4a90e2;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: #f0f0f0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input[readonly] {
    background: #e8e8e8;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    gap: 0.5rem;
}

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

.checkbox-group a {
    color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s;
}

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

.urgency-section {
    margin: 4rem 0;
}

.urgency-box {
    padding: 2.5rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
}

.urgency-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.urgency-box p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.final-cta-section {
    margin: 5rem 0;
    text-align: center;
    padding: 4rem 2rem;
    background: #1a1a1a;
    color: #fff;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.final-cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-final-cta:hover {
    transform: scale(1.05);
}

.site-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #aaa;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

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

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

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

.page-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.page-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.contact-info {
    margin: 2rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.contact-info strong {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c8c2c;
}

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

.thanks-details {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    text-align: left;
}

.thanks-details strong {
    display: block;
    margin-bottom: 0.5rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #000;
}

@media (max-width: 768px) {
    .editorial-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .editorial-story h2,
    .problem-section h2,
    .reveal-section h2 {
        font-size: 1.6rem;
    }

    .insight-block {
        padding: 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}