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

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

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

a:hover {
    color: #0d3a6b;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a5490;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    border: 1px solid #ddd;
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: left;
}

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

.article-meta {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.article-body {
    margin-top: 2rem;
}

/* Narrative Sections */
.narrative-section {
    margin-bottom: 2.5rem;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.narrative-section p {
    margin-bottom: 1.3rem;
}

.narrative-section h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

.narrative-section ul {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.narrative-section li {
    margin-bottom: 0.6rem;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #1a5490;
    background-color: #f8f9fa;
    font-style: italic;
    font-size: 1.15rem;
    color: #444;
}

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

.image-break img {
    width: 100%;
    border-radius: 2px;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 0.7rem;
    font-style: italic;
}

.inline-image-small {
    margin: 2rem 0;
}

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

/* Inline CTAs */
.inline-cta {
    margin: 2.5rem 0;
    padding: 1.8rem;
    background-color: #f0f4f8;
    border-radius: 4px;
}

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

.cta-link {
    display: inline-block;
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
}

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

/* Testimonials */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fff;
    border-left: 3px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Insight Box */
.insight-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fff8e6;
    border-radius: 4px;
    border: 1px solid #f0e5c0;
}

.insight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    margin-top: 0;
    color: #2c2c2c;
}

.insight-box ul {
    margin-left: 1.5rem;
}

/* CTA Sections */
.cta-section-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
    border-radius: 4px;
}

.cta-section-inline h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 1.6rem;
}

.cta-section-inline p {
    color: #e8f1f8;
    margin-bottom: 1.5rem;
}

.btn-cta-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #ffffff;
    color: #1a5490;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #1a5490;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #2c5f8d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.final-cta-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.final-cta-section h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #1a1a1a;
}

.final-cta-section p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-preview {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.services-preview h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #1a5490;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 1.2rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service:hover {
    background-color: #0d3a6b;
}

/* Services Detailed Page */
.services-detailed {
    margin-top: 2rem;
}

.service-detail-card {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-detail-card h2 {
    color: #1a5490;
    margin-top: 0;
    font-size: 1.8rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    color: #333;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: #2c2c2c;
}

.service-detail-card ul {
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-detail-card li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Contact Form */
.contact-form-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 2px solid #1a5490;
}

.contact-form-section h2 {
    margin-top: 0;
    color: #1a1a1a;
}

.enquiry-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-submit:hover {
    background-color: #0d3a6b;
}

/* Contact Page */
.contact-info-section {
    margin: 2rem 0;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a5490;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 0.5rem 0.8rem;
    border-radius: 3px;
    display: inline-block;
    font-size: 1rem;
}

.email-display-large {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.contact-approach {
    margin-top: 3rem;
}

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

.confirmation-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #e8f5e9;
    border-radius: 4px;
    border: 1px solid #c8e6c9;
}

.confirmation-box h2 {
    color: #2e7d32;
    margin-top: 0;
}

.next-steps {
    margin: 2.5rem 0;
    text-align: left;
}

.reassurance-section {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: left;
}

/* Disclaimer */
.disclaimer-section {
    margin: 3rem 0;
    padding: 1.8rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 2px;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #856404;
    margin-bottom: 0;
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.3rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        justify-content: center;
        gap: 1rem;
    }

    .editorial-content {
        padding: 0 1.5rem;
    }

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

    .article-meta {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.1rem;
    }

    .narrative-section h2 {
        font-size: 1.5rem;
    }

    .narrative-section h3 {
        font-size: 1.2rem;
    }

    blockquote {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
    }

    .inline-cta,
    .testimonial-inline,
    .insight-box {
        padding: 1.5rem;
    }

    .cta-section-inline,
    .final-cta-section {
        padding: 2rem 1.5rem;
    }

    .services-preview {
        padding: 2rem 1.5rem;
    }

    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

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

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.7rem;
    }
}