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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d52;
}

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

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Helvetica', 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 500;
}

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

/* Editorial Flow - Main Container */
.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Content Section */
.content-section {
    margin-top: 40px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 45px 0 20px;
    line-height: 1.3;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 35px 0 15px;
}

.content-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3a3a3a;
    margin: 25px 0 12px;
}

.content-section p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    margin: 20px 0 20px 30px;
}

.content-section li {
    margin-bottom: 12px;
}

.inline-image {
    margin: 40px 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Inline CTA */
.inline-cta {
    text-align: center;
    margin: 35px 0;
    padding: 25px;
    background-color: #f0f7f9;
    border-left: 4px solid #1a5f7a;
}

.cta-link {
    font-size: 19px;
    font-weight: 600;
    color: #1a5f7a;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cta-link:hover {
    text-decoration: underline;
}

/* Insight Boxes */
.insight-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.insight-box h3 {
    font-size: 22px;
    color: #1a5f7a;
    margin: 0 0 15px 0;
}

.insight-box p {
    margin-bottom: 0;
}

/* Quote Blocks */
.quote-block {
    border-left: 5px solid #1a5f7a;
    padding: 25px 30px;
    margin: 40px 0;
    background-color: #f9f9f9;
    font-style: italic;
}

.quote-block p {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

/* CTA Button Inline */
.cta-button-inline {
    display: inline-block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.cta-button-inline:hover {
    background-color: #0d3d52;
    color: #ffffff;
}

/* Services Preview */
.services-preview {
    margin: 60px 0;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-card p {
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 20px 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-card .select-service {
    display: inline-block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #0d3d52;
}

/* Trust Section */
.trust-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f0f7f9;
    border-radius: 6px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #1a5f7a;
    border-radius: 8px;
    color: #ffffff;
}

.cta-section h2,
.cta-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    color: #e0f2f7;
    font-size: 19px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5f7a;
    padding: 16px 40px;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Urgency Note */
.urgency-note {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 20px;
    margin: 30px 0;
}

.urgency-note p {
    color: #856404;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

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

.form-group label {
    display: block;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0d3d52;
}

/* Footer */
.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: #666;
}

.copyright {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 30px;
}

.cookie-content p {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #7dc8e8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #1a5f7a;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #0d3d52;
}

.cookie-btn.reject {
    background-color: #666;
    color: #ffffff;
}

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

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

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

.sticky-cta a {
    display: block;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #0d3d52;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Services Page Specific */
.services-list {
    margin-top: 40px;
}

.service-detailed {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.service-detailed.featured-service {
    border: 2px solid #1a5f7a;
}

.service-detailed .badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.service-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 20px 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.services-note {
    background-color: #f0f7f9;
    padding: 35px;
    border-radius: 6px;
    margin: 50px 0;
}

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

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

.contact-block h3 {
    font-size: 22px;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.contact-note {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-methods {
    margin: 50px 0;
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin: 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.thanks-info {
    margin: 50px 0;
}

.step-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin: 20px 0;
    text-align: left;
}

.step-item h3 {
    color: #1a5f7a;
    margin-bottom: 10px;
}

.service-confirmation {
    background-color: #f0f7f9;
    padding: 30px;
    border-radius: 6px;
    margin: 40px 0;
}

.service-confirmation h2 {
    margin-bottom: 15px;
}

#selected-service-display {
    font-size: 22px;
    font-weight: 600;
    color: #1a5f7a;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.contact-reminder {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
    margin: 40px 0;
}

.social-proof {
    margin: 60px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page .content-section {
    text-align: left;
}

.legal-page h2 {
    margin-top: 50px;
}

.legal-page h3 {
    margin-top: 35px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-page table th,
.legal-page table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

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

    .editorial-flow {
        padding: 40px 20px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    body {
        font-size: 17px;
    }

    .stats-row {
        flex-direction: column;
    }

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

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

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

    .service-detailed {
        padding: 25px;
    }

    .cta-section {
        padding: 35px 25px;
    }

    .form-section {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 28px;
    }

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

    body {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}
