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

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

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

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4caf50;
    color: white;
}

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

.btn-reject {
    background-color: #757575;
    color: white;
}

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

/* Navigation - Minimal Top Style for Editorial Archetype */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #546e7a;
    font-style: italic;
}

/* Article Images */
.article-image {
    margin: 3rem -1.5rem;
    overflow: hidden;
}

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

.article-image-inline {
    margin: 2.5rem 0;
}

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

/* Article Content - Story-Driven Flow */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

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

.article-content h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.article-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.article-content h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.article-content li {
    margin-bottom: 0.5rem;
}

/* Inline CTA within Content */
.inline-cta {
    background-color: #e3f2fd;
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid #2196f3;
}

.inline-cta p {
    margin-bottom: 0.8rem;
}

.inline-cta strong {
    color: #1565c0;
}

.cta-link {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1565c0;
    transition: color 0.3s ease, border-color 0.3s ease;
}

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

/* Trust Block */
.trust-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2196f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: #546e7a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Service Cards - Stacked Editorial Style */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #2196f3;
    background-color: #f3f9ff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2196f3;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.service-time {
    font-size: 0.95rem;
    color: #757575;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-ideal {
    font-size: 0.95rem;
    color: #757575;
    font-style: italic;
    margin-top: 1rem;
}

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

.btn-service:hover {
    background-color: #1976d2;
}

/* Testimonials - Editorial Quote Style */
.testimonial {
    border-left: 4px solid #2196f3;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.15rem;
}

.testimonial p {
    color: #37474f;
}

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

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

.form-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-bottom: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #cfd8dc;
    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 select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196f3;
}

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

.btn-submit:hover {
    background-color: #45a049;
}

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

.final-cta a {
    color: #1565c0;
    text-decoration: underline;
}

/* Timeline (About Page) */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2196f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-width: 80px;
}

.timeline-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2196f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.value-item p {
    margin: 0;
    font-size: 1.05rem;
}

/* FAQ Section */
.faq-section {
    margin: 2.5rem 0;
}

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

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-item p {
    margin: 0;
    font-size: 1.05rem;
}

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

.contact-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2196f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-info-item a {
    color: #1565c0;
    text-decoration: none;
    border-bottom: 1px solid #1565c0;
}

.info-note {
    font-size: 0.95rem;
    color: #757575;
    font-style: italic;
    margin-top: 0.8rem;
}

/* Directions Info */
.directions-info {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.directions-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Info Box */
.info-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-box p {
    margin: 0;
}

.info-box a {
    color: #1565c0;
    text-decoration: underline;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    border: 4px solid #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-container .lead {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-details .timeline-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2196f3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-width: 50px;
    text-align: center;
}

.thanks-details .timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-details .timeline-item p {
    margin: 0;
    font-size: 1rem;
}

.service-confirmation {
    background-color: #e3f2fd;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    text-align: center;
}

.selected-service {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1565c0;
    margin: 1rem 0;
}

.thanks-cta {
    margin: 3rem 0;
}

.thanks-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.thanks-links {
    list-style: none;
    padding: 0;
}

.thanks-links li {
    margin-bottom: 1rem;
}

.thanks-links a {
    color: #1565c0;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid #1565c0;
}

/* Legal Pages */
.legal-page {
    font-size: 1.05rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
}

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

.legal-page th,
.legal-page td {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.legal-page th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    background-color: #e64a19;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    margin: 0;
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Responsive Design - Mobile First */
@media (min-width: 640px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .trust-block {
        flex-direction: row;
        justify-content: space-around;
    }

    .article-image {
        margin-left: -3rem;
        margin-right: -3rem;
        border-radius: 4px;
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .nav-container {
        max-width: 900px;
    }

    .editorial-container {
        max-width: 900px;
        padding: 4rem 3rem;
    }

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

    .article-content {
        font-size: 1.2rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .contact-info-item {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

@media (max-width: 639px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

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

    .sticky-btn {
        display: block;
        text-align: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}