/* 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: #2a2a2a;
    background: #fafafa;
}

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

a:hover {
    color: #666;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

.cookie-content {
    max-width: 1200px;
    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: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #2a2a2a;
}

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

/* Navigation - Minimal Style */
.nav-minimal {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-brand a {
    color: #2a2a2a;
}

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

.nav-links a {
    font-size: 0.95rem;
    position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #2a2a2a;
}

/* Editorial Container - Article Layout */
.editorial-container {
    max-width: 100%;
    background: #fff;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial Style */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    margin: 0;
}

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

/* Content Blocks - Story-like Flow */
.content-block {
    padding: 4rem 0;
}

.content-block.alternate {
    background: #f9f9f9;
}

.content-block h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-block h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.content-block h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block ul,
.content-block ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

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

blockquote {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-left: 4px solid #2a2a2a;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

/* Inline CTAs within content */
.inline-cta {
    margin: 3rem 0;
    text-align: center;
}

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

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

/* Image Sections - Editorial Style */
.image-section {
    margin: 4rem 0;
}

.image-section img {
    width: 100%;
}

.image-section figcaption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 4rem 0;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

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

.insight-list li {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
}

/* Testimonials Inline */
.testimonial-inline {
    padding: 4rem 0;
    background: #2a2a2a;
    color: #fff;
}

.testimonial-inline.alternate {
    background: #3a3a3a;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #ccc;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    padding: 2rem;
    background: #f5f5f5;
    border-left: 3px solid #2a2a2a;
}

.feature-card h4 {
    margin: 0 0 0.8rem 0;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
    color: #555;
}

/* Service Cards - CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2a2a2a;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2a2a2a;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a2a2a;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: #2a2a2a;
}

.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #2a2a2a;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #2a2a2a;
    color: #fff;
}

.btn-service.primary {
    background: #2a2a2a;
    color: #fff;
}

.btn-service.primary:hover {
    background: #3a3a3a;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #2a2a2a;
    color: #fff;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #3a3a3a;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
    background: #2a2a2a;
    color: #fff;
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2a2a2a;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #e0e0e0;
}

/* Final Note */
.final-note {
    padding: 4rem 0;
    text-align: center;
}

.final-note p {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
}

.sticky-btn {
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    display: inline-block;
}

.sticky-btn:hover {
    color: #e0e0e0;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

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

.footer-links a:hover,
.footer-links a.active {
    color: #fff;
}

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

/* About Page Specific */
.page-header {
    padding: 4rem 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.principle-item {
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #2a2a2a;
}

.principle-item h3 {
    margin: 0 0 0.8rem 0;
    font-size: 1.3rem;
}

.principle-item p {
    margin: 0;
    color: #555;
}

.context-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.context-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.context-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.cta-inline {
    text-align: center;
    padding: 3rem 0;
}

.cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.outcomes-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.outcome-card {
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 3px solid #2a2a2a;
}

.outcome-card p {
    margin: 0;
    font-size: 1.1rem;
}

.final-cta {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2a2a2a;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #3a3a3a;
}

/* Services Page */
.services-detailed {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail {
    margin: 4rem 0;
    padding: 3rem;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.service-detail.featured-service {
    border: 2px solid #2a2a2a;
    background: #fafafa;
}

.badge-large {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-header h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.service-tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

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

.service-info h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.service-info ul {
    margin: 1rem 0;
}

.service-pricing {
    padding: 2rem;
    background: #f5f5f5;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: #2a2a2a;
}

.price-note {
    margin: 0.5rem 0;
    color: #666;
}

.price-detail {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.faq-item {
    margin: 2.5rem 0;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.simple-contact {
    padding: 4rem 0;
    background: #f5f5f5;
    text-align: center;
}

.contact-cta {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.email-link {
    color: #2a2a2a;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 2px;
}

.contact-alternative {
    font-size: 1rem;
    color: #666;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content {
    margin-top: 3rem;
}

.service-selected {
    padding: 1.5rem;
    background: #f5f5f5;
    border-left: 4px solid #2a2a2a;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 2rem 0;
    counter-reset: step-counter;
    list-style: none;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.meanwhile-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
}

.link-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.suggestion-link {
    font-size: 1.1rem;
    color: #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 3px;
    display: inline-block;
}

.contact-reminder {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f5f5f5;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.browser-instructions {
    margin: 2rem 0;
}

.browser-instructions h4 {
    margin-top: 2rem;
}

.browser-instructions ol {
    margin: 1rem 0 2rem 2rem;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a2a2a;
    font-weight: 600;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

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

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .split-content {
        flex-direction: row;
    }

    .split-right {
        padding: 4rem;
    }

    .feature-cards {
        flex-direction: row;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 300px;
    }

    .service-body {
        flex-direction: row;
    }

    .service-info {
        flex: 2;
    }

    .service-pricing {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .principles-list,
    .outcomes-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-item,
    .outcome-card {
        flex: 1;
        min-width: 250px;
    }

    .sticky-cta {
        display: block;
    }
}

@media (min-width: 1024px) {
    .nav-minimal {
        padding: 2rem 4rem;
    }

    .hero-editorial {
        padding: 6rem 0 4rem;
    }

    .content-block {
        padding: 6rem 0;
    }
}
