/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

/* Navigation - Minimal Style */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

/* Editorial Container - Narrow Centered */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.hero-editorial h1 {
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Article Images */
.article-image {
    width: 100%;
    margin: 3rem 0;
}

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

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

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

.content-block li {
    margin-bottom: 0.75rem;
}

/* Blockquote */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2c5f2d;
    background-color: #f8f9f8;
    font-style: italic;
    font-size: 1.1rem;
}

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

/* Inline CTA */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #1a3a1b;
    border-bottom-color: #1a3a1b;
}

/* Insight Section */
.insight-section {
    background-color: #f8f9f8;
    padding: 2.5rem;
    margin: 3rem -2rem;
    border-radius: 4px;
}

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

.insight-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.insight-item p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    border-radius: 4px;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: #2c5f2d;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Testimonial Block */
.testimonial-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

/* Services Reveal Section */
.services-reveal {
    margin-top: 4rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.service-item {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #2c5f2d;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.1);
}

.service-item h3 {
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-item p {
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 1.5rem 0 1rem;
}

.btn-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form Section */
.form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9f8;
    border-radius: 4px;
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Urgency Section */
.urgency-section {
    padding: 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #f57f17;
    margin: 3rem -2rem;
}

/* CTA Final */
.cta-final {
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    background-color: #f8f9f8;
    border-radius: 4px;
}

.cta-final h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-final p {
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-large:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.sticky-btn {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(44, 95, 45, 0.3);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-btn:hover {
    background-color: #1a3a1b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

/* Footer */
.article-footer {
    margin-top: 5rem;
    padding: 3rem 2rem;
    border-top: 2px solid #e0e0e0;
    background-color: #fafafa;
    margin-left: -2rem;
    margin-right: -2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.footer-column p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column ul li a:hover {
    color: #2c5f2d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #d0d0d0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.contact-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-hero {
    text-align: center;
    padding: 3rem 0;
}

.thanks-content {
    text-align: center;
    padding: 3rem 0;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-radius: 4px;
}

.step-item h3 {
    margin-top: 0;
    color: #2c5f2d;
}

/* Legal Page Styles */
.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookies-table thead {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 0.875rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    font-weight: 600;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #f8f9f8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-wrapper {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .insight-section,
    .cta-section,
    .urgency-section,
    .cta-final {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .article-footer {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

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

    .sticky-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

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

    .price {
        font-size: 1.25rem;
    }

    .service-item {
        padding: 1.5rem;
    }
}
