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

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

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

a:hover {
    color: #0d3a6b;
    text-decoration: underline;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a5490;
    text-decoration: none;
}

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

.nav-links a {
    font-size: 16px;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Editorial Container - Article-like layout */
.editorial-container {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

/* Article Header */
.article-header {
    margin-bottom: 50px;
    text-align: left;
}

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

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

.article-meta {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Article Images */
.article-image {
    margin: 50px 0;
}

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

.article-image-inline {
    margin: 40px 0;
}

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

/* Article Sections */
.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 50px;
}

.article-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2c2c2c;
}

.article-section h4 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
    color: #2c2c2c;
}

.article-section p {
    margin-bottom: 25px;
}

.article-section ul,
.article-section ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

/* Drop Cap */
.drop-cap::first-letter {
    font-size: 72px;
    line-height: 1;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    font-weight: 700;
    color: #1a5490;
}

/* Highlighted Section */
.highlighted {
    background-color: #f5f8fa;
    padding: 35px;
    border-left: 4px solid #1a5490;
    margin: 50px 0;
}

/* Blockquote */
blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    border-left: 4px solid #d0d0d0;
    background-color: #f9f9f9;
    font-style: italic;
    color: #4a4a4a;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #777;
}

/* Insight Boxes */
.insight-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.insight-box h4 {
    margin-top: 0;
    color: #1a5490;
}

/* Comparison Grid */
.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.comparison-item {
    flex: 1 1 calc(50% - 10px);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 4px;
}

.comparison-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #1a5490;
}

.comparison-item p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Price Comparison Table */
.price-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
}

.price-comparison thead {
    background-color: #f5f5f5;
}

.price-comparison th,
.price-comparison td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-comparison th {
    font-weight: 600;
    color: #1a1a1a;
}

.note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #1a5490;
    color: #fff;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.testimonial-block p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-block cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

/* CTA Sections */
.cta-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
    border-radius: 4px;
}

.cta-section.dark {
    background-color: #1a1a1a;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-inline {
    margin: 35px 0;
}

.cta-inline-text {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f8fa;
    border-left: 3px solid #1a5490;
}

.cta-inline-text p {
    margin-bottom: 0;
    font-size: 18px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-text {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: #1a5490;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d3a6b;
    text-decoration: none;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #545b62;
    text-decoration: none;
}

.btn-service {
    background-color: #28a745;
    color: #fff;
    width: 100%;
    margin-top: 15px;
}

.btn-service:hover {
    background-color: #218838;
    text-decoration: none;
}

.btn-text {
    background-color: transparent;
    color: #1a5490;
    padding: 0;
    font-weight: normal;
    font-size: 18px;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.service-card.featured {
    border: 2px solid #1a5490;
    position: relative;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

/* Services List (Detailed) */
.services-list {
    margin-top: 40px;
}

.service-card-detailed {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 50px;
    border-radius: 4px;
    overflow: hidden;
}

.service-card-detailed.featured {
    border: 2px solid #1a5490;
    position: relative;
}

.service-badge {
    background-color: #1a5490;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 4px;
}

.service-header {
    background-color: #f5f8fa;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    margin: 0;
    font-size: 28px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
}

.service-content {
    padding: 30px;
}

.service-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

/* Form Section */
.form-section {
    background-color: #f5f8fa;
    padding: 50px 40px;
    margin: 60px 0;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

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

.faq-item h4 {
    margin-bottom: 10px;
    color: #1a5490;
}

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

/* Contact Info */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.contact-info-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 4px;
}

.contact-info-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a5490;
}

.contact-info-item p {
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    color: #777;
}

/* Thanks Page */
.thanks-container {
    text-align: center;
    padding: 60px 30px;
}

.thanks-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

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

.thanks-message .lead {
    font-size: 22px;
    margin-bottom: 20px;
}

.service-confirmation {
    margin: 30px 0;
}

.selected-service-box {
    background-color: #f5f8fa;
    padding: 25px;
    border-radius: 4px;
    margin: 20px 0;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    color: #1a5490;
    font-weight: 700;
}

.thanks-next-steps {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.thanks-next-steps h3 {
    margin-bottom: 20px;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
}

.thanks-contact {
    margin: 40px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Legal Documents */
.legal-document {
    max-width: 800px;
}

.legal-document .article-section {
    margin-bottom: 40px;
}

/* Sticky CTA */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.cta-sticky .btn-primary {
    padding: 16px 36px;
    font-size: 16px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

    .article-section h2 {
        font-size: 26px;
    }

    .comparison-grid {
        flex-direction: column;
    }

    .comparison-item {
        flex: 1 1 100%;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .contact-info-item {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .cta-sticky .btn-primary {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .price-comparison {
        font-size: 14px;
    }

    .price-comparison th,
    .price-comparison td {
        padding: 10px 8px;
    }
}

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

    .editorial-container {
        padding: 0 20px;
    }

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

    .drop-cap::first-letter {
        font-size: 60px;
    }

    .nav-links {
        gap: 10px;
    }
}