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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 18px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: #e74c3c;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    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: 700;
    color: #2c3e50;
}

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

.nav-links a {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

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

.sticky-btn {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

/* Editorial Container (Narrow centered layout) */
.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Editorial */
.hero-editorial {
    margin-top: 40px;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 30px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Narrow Text Sections */
.narrow-text {
    max-width: 680px;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 20px;
    font-weight: 600;
    color: #2c3e50;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #2c3e50;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    margin-bottom: 20px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.5;
    color: #34495e;
    margin-bottom: 30px;
}

/* Inline Images */
.inline-image {
    margin: 40px 0;
    border-radius: 8px;
}

/* Quotes */
.editorial-quote {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    color: #34495e;
    border-left: 4px solid #e74c3c;
    padding-left: 30px;
    margin: 40px 0;
}

/* Stat Highlight */
.stat-highlight {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-highlight p {
    font-size: 18px;
    margin: 0;
}

/* Inline CTAs */
.inline-cta {
    margin: 30px 0;
    text-align: center;
}

.text-cta {
    font-size: 20px;
    color: #e74c3c;
    font-weight: 600;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.text-cta:hover {
    color: #c0392b;
    border-bottom-color: #c0392b;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #fef5e7;
    border: 2px solid #f39c12;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.inline-cta-box p {
    margin-bottom: 15px;
}

.inline-cta-box strong {
    font-size: 20px;
    color: #2c3e50;
}

/* Check List */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: #ffffff;
}

/* Pillar Cards */
.pillar-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.pillar-card {
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pillar-card h3 {
    margin-top: 0;
    color: #e74c3c;
}

/* Testimonials */
.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
    margin: 30px 0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

/* Service List Editorial */
.service-list-editorial {
    margin: 50px 0;
}

.service-item {
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #e74c3c;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.service-item h3 {
    margin-top: 0;
    font-size: 26px;
    color: #2c3e50;
}

.service-item .price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

.service-cta {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #34495e;
    color: #ffffff;
}

/* Urgency Block */
.urgency-block {
    margin: 60px 0;
}

.urgency-content {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.urgency-content h2 {
    margin-top: 0;
}

.urgency-content strong {
    color: #e74c3c;
}

/* Forms */
.form-section {
    background-color: #f8f9fa;
    padding: 60px 30px;
    margin: 60px -20px;
    border-radius: 8px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Final Thought */
.final-thought {
    margin: 80px 0;
    text-align: center;
}

.closing-text {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    font-style: italic;
}

/* Page Header */
.page-header {
    margin: 60px 0 40px;
    text-align: center;
}

/* About Story */
.about-story,
.story-intro,
.insight-block,
.story-problem,
.solution-reveal,
.testimonials-inline,
.services-overview {
    margin: 40px 0;
}

/* Contact Info */
.contact-info {
    margin: 40px 0;
}

.contact-block {
    margin: 40px 0;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 25px;
    border-left: 4px solid #3498db;
    margin-top: 40px;
    border-radius: 4px;
}

/* Services Detailed */
.services-detailed {
    margin: 40px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.price-tag {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    margin: 40px 0;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

/* Thanks Content */
.thanks-content {
    margin: 80px 0;
    text-align: center;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 40px auto;
}

.thanks-note {
    background-color: #e8f4f8;
    padding: 25px;
    border-left: 4px solid #3498db;
    margin-top: 50px;
    border-radius: 4px;
    text-align: left;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
    margin-top: 100px;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 16px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

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

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

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .lead-text {
        font-size: 20px;
    }

    .editorial-quote {
        font-size: 22px;
        padding-left: 20px;
    }

    .stat-number {
        font-size: 42px;
    }

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

    .pillar-cards {
        gap: 20px;
    }

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

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

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

    .thanks-links {
        max-width: 100%;
    }
}