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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    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;
    margin: 0;
    min-width: 250px;
}

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

.cookie-actions {
    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-color: var(--highlight-color);
    color: var(--white);
}

.btn-accept:hover {
    background-color: #d63851;
}

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

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

.nav-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

.editorial-subhead {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.inline-cta {
    text-align: center;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--highlight-color);
}

.cta-link {
    color: var(--highlight-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

.editorial-body h2 {
    font-size: 1.9rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 6px;
}

.insight-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.insight-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.trust-block {
    background-color: var(--light-bg);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.testimonial {
    font-style: italic;
    color: var(--text-color);
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: normal;
}

.benefits-reveal {
    margin: 4rem 0;
}

.benefits-reveal h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.price-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-block {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 3rem 0;
}

.urgency-text {
    font-size: 1.05rem;
    color: #856404;
    margin: 0;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #d63851;
}

.final-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.final-cta p {
    font-size: 1.2rem;
    margin: 0;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a:hover {
    color: var(--highlight-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.sticky-btn {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--white);
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d63851;
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.5);
    transform: translateY(-2px);
}

.services-detailed {
    margin: 3rem 0;
}

.service-block {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--light-gray);
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price-display {
    font-size: 1.5rem;
    color: var(--highlight-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
}

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

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.btn-cta-large:hover {
    background-color: #d63851;
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

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

.contact-item p {
    line-height: 1.8;
}

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

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .editorial-headline {
        font-size: 2rem;
    }

    .editorial-subhead {
        font-size: 1.1rem;
    }

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

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

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

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

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

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