/* 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: #ffffff;
}

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: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.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: #27ae60;
    color: #ffffff;
}

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

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

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

/* Navigation */
.nav-minimal {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s ease;
}

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

/* Editorial Main Layout */
.editorial-main {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Story Header */
.story-header {
    margin-bottom: 2rem;
}

.story-header.centered {
    text-align: center;
}

.story-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

/* Inline Images */
.inline-image {
    margin: 2rem 0;
}

.inline-image.wide {
    margin-left: -2rem;
    margin-right: -2rem;
}

.inline-image img {
    width: 100%;
    border-radius: 2px;
}

.inline-image figcaption {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Story Sections */
.story-section {
    padding: 2rem 0;
}

.story-section.contrast-bg {
    background-color: #f8f9fa;
    padding: 2.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.story-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.story-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #34495e;
}

.story-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.9;
}

.story-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
}

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

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

/* Insight List */
.insight-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.insight-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.insight-item p {
    color: #555;
}

/* Services Editorial Style */
.services-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #bdc3c7;
}

.service-card.featured {
    border: 2px solid #3498db;
    background-color: #f0f8ff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #2c3e50;
}

.service-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ecf0f1;
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.testimonial {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
}

/* CTA Block */
.cta-block {
    padding: 2.5rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    margin: 2rem 0;
}

.cta-block.centered {
    text-align: center;
}

.cta-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-block p {
    font-size: 1.1rem;
    color: #555;
}

/* Form Container */
.form-container {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    margin: 3rem -2rem;
    border-radius: 4px;
}

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-confirmation {
    background-color: #e8f8f5;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

/* Services Page Specific */
.services-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-full {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-full:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-card-full.featured-service {
    border: 2px solid #3498db;
}

.service-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card-full.featured-service .service-header {
    background-color: #3498db;
}

.service-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #ffffff;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.service-outcome {
    font-style: italic;
    color: #7f8c8d;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 3px solid #3498db;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

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

.contact-note {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    margin-bottom: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
}

/* Legal Pages */
.legal-page .story-section {
    padding: 1.5rem 0;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    margin: 0;
    color: #555;
}

/* Footer */
.footer-minimal {
    margin-top: 5rem;
    padding: 3rem 2rem 2rem;
    background-color: #2c3e50;
    color: #ecf0f1;
}

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

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

.footer-links a {
    color: #ecf0f1;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-note {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

/* Method Points */
.method-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.method-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.method-item p {
    color: #555;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .story-header h1 {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .editorial-main {
        margin: 4rem auto;
    }

    .insight-list {
        gap: 2.5rem;
    }

    .services-editorial {
        gap: 2.5rem;
    }

    .next-steps {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }
}

/* Desktop and Up */
@media (min-width: 1024px) {
    .nav-minimal {
        padding: 2rem 3rem;
    }

    .story-header h1 {
        font-size: 3.5rem;
    }

    .editorial-main {
        max-width: 720px;
        margin: 5rem auto;
    }

    .inline-image.wide {
        margin-left: -4rem;
        margin-right: -4rem;
    }

    .story-section.contrast-bg {
        padding: 3rem 3rem;
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .form-container {
        padding: 3rem;
        margin: 3rem -3rem;
    }

    .testimonial-section {
        padding: 4rem 3rem;
        margin-left: -3rem;
        margin-right: -3rem;
    }
}
