/* 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: #ffffff;
    font-size: 17px;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Article Container */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.article-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 400;
    line-height: 1.5;
}

/* Text Blocks */
.text-block {
    margin-bottom: 3rem;
}

.text-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.text-block p {
    margin-bottom: 1.5rem;
    color: #34495e;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.3rem !important;
    line-height: 1.6 !important;
    color: #2c3e50 !important;
    font-weight: 400;
}

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

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

/* Story Sections */
.story-intro,
.story-body,
.story-continuation,
.story-deep {
    margin-bottom: 4rem;
}

/* Insight/Quote Block */
.insight-block {
    margin: 4rem 0;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 2rem 2.5rem;
    margin: 2rem 0;
}

.quote-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

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

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box-alt {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box-alt h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* Buttons */
.btn-cta,
.btn-cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta {
    background: #ffffff;
    color: #667eea;
}

.btn-cta:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-cta-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

/* Social Proof Section */
.social-proof {
    margin: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    border-left: 3px solid #3498db;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Services Reveal */
.services-reveal {
    margin: 5rem 0;
    padding: 3rem 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.service-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1rem;
}

/* Urgency Block */
.urgency-block {
    margin: 3rem 0;
}

.urgency-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #856404;
}

/* Form Section */
.form-section {
    margin: 5rem 0;
    padding: 3rem 0;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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 {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA */
.final-cta {
    margin: 5rem 0 3rem;
}

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

.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: #ecf0f1;
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Page Container (for standard pages) */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-content {
    line-height: 1.7;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.page-content p {
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.page-content li {
    margin-bottom: 0.8rem;
    color: #34495e;
}

.page-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

/* About Page Specific */
.about-intro {
    margin-bottom: 3rem;
}

.about-story,
.about-mission,
.about-values,
.about-team {
    margin-bottom: 3rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.values-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    margin-bottom: 1.5rem;
}

/* Services Page */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 1.5rem 0;
}

.services-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.services-cta h2 {
    margin-top: 0;
}

/* Contact Page */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-block {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-block h2 {
    margin-top: 0;
}

.contact-faq {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

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

/* Thanks Page */
.thanks-container {
    max-width: 700px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-title {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-note {
    font-style: italic;
    color: #7f8c8d;
    margin: 2rem 0;
}

/* Legal Pages */
.legal-page section {
    margin-bottom: 2.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .text-block h2 {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1.15rem !important;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

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

    .cookie-buttons button {
        width: 100%;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .contact-info {
        gap: 2rem;
    }

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

    .thanks-content {
        padding: 3rem 2rem;
    }

    .thanks-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .cta-box,
    .cta-box-alt {
        padding: 2rem 1.5rem;
    }

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