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

:root {
    --primary-color: #4b628d;       /* Blueprint */
    --primary-color-dark: #021c2c;  /* Anchor */
    --secondary-color: #b36528;     /* Catalyst */
    --secondary-color-dark: #8f4f1e;
    --accent-color: #f2d398;        /* Yield */
    --peace: #acbed8;               /* Peace */
    --backbone: #e8ebf7;            /* Backbone */
    --text-dark: #021c2c;           /* Anchor */
    --text-light: #4b628d;          /* Blueprint */
    --bg-light: #e8ebf7;            /* Backbone */
    --bg-white: #ffffff;
    --border-color: #acbed8;        /* Peace */
    --shadow: 0 1px 3px rgba(2, 28, 44, 0.08);
    --shadow-lg: 0 10px 25px rgba(2, 28, 44, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
}

.section-subtitle,
.hero-content p,
blockquote,
.pull-quote {
    font-family: 'Source Serif 4', Georgia, serif;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    font-style: italic;
}

.btn, .btn-primary, .btn-secondary {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--primary-color-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e40af 100%);
    color: white;
    padding: 6rem 0;
}


/* Hero CTA - white button that pops on blue gradient */
.hero .btn-primary {
    background-color: white;
    color: #1e40af;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Hero Section - Non-Homepage Pages */
.hero.secondary-hero {
    background: linear-gradient(135deg, #8B6F47 0%, #D4A574 100%);
}

/* Page Header - Non-Homepage Pages */
.page-header {
    background-color: var(--primary-color-dark);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.why-choose h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-icon-svg {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-icon-svg svg {
    width: 40px;
    height: 40px;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-note {
    text-align: center;
    color: var(--text-light);
}

.testimonial-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Latest Blog */
.latest-blog {
    padding: 5rem 0;
}

.latest-blog h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.blog-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 0.5rem;
}

.blog-image img {
    width: 100%;
    border-radius: 0.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-content h3 a:hover {
    text-decoration: underline;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

/* Footer bottom links (Privacy Policy, etc.) */
.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Full Blog Posts */
.blog-full-posts {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.blog-post {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.blog-post h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-post .post-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.post-content {
    color: var(--text-dark);
    line-height: 1.8;
}

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

.post-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.post-content .btn {
    margin-top: 1.5rem;
}

/* Legal Content (Privacy Policy, Terms, etc.) */
.legal-content {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .why-choose h2,
    .services-overview h2,
    .testimonials h2,
    .latest-blog h2,
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .blog-preview {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem 20px 1.5rem;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-menu .cta-button {
        text-align: center;
        display: block;
    }

    .navbar .container {
        position: relative;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* Client Portal Link */
.client-portal-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.client-portal-link:hover {
    background-color: var(--primary-color);
    color: white !important;
}

/* === Styles from about.html === */
.about-content {
            padding: 5rem 0;
        }

        .about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-image img {
            width: 100%;
            border-radius: 0.5rem;
            box-shadow: var(--shadow-lg);
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .about-text p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.0625rem;
        }

        .mission-section {
            background-color: var(--bg-light);
            padding: 3rem;
            border-radius: 0.5rem;
            margin-bottom: 4rem;
            text-align: center;
        }

        .mission-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .mission-section p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.8;
            font-size: 1.0625rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }













        .credentials-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }









        @media (max-width: 768px) {
            .about-intro {
                grid-template-columns: 1fr;
            }

            .about-text h2 {
                font-size: 1.5rem;
            }

            .mission-section h2,
            .values-section h2,
            .credentials-section h2 {
                font-size: 1.5rem;
            }
        }

/* === Styles from contact.html === */
.contact-content {
            padding: 5rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form-section h2,
        .contact-info-section h2 {
            font-size: 1.75rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-form-section > p,
        .contact-info-section > p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

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

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

        .form-group label {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 0.375rem;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

        .contact-info-card {
            background-color: var(--bg-light);
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }

        .contact-info-card h3 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
        }

        .contact-info-card p {
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .contact-info-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info-card a:hover {
            color: #1e40af;
        }

        .info-note {
            font-size: 0.875rem;
            color: var(--text-light) !important;
            margin-top: 0.5rem;
        }

        .testimonial-box {
            background-color: white;
            border: 2px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-top: 2rem;
        }

        .testimonial-box .quote {
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .testimonial-box .author {
            color: var(--text-light);
            font-weight: 600;
        }

















        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
.why-contact h2 {
                font-size: 1.5rem;
            }
        }

/* === Styles from faq.html === */
.faq-content {
            padding: 5rem 0;
        }









        .faq-item p {
            color: var(--text-light);
            line-height: 1.8;
        }

        .still-questions {
            background-color: var(--bg-light);
            padding: 4rem 0;
            text-align: center;
        }

        .still-questions h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .still-questions > .container > p {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contact-option {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: var(--shadow);
        }

        .contact-option h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .contact-option p {
            color: var(--text-light);
        }

        .contact-option a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-option a:hover {
            color: #1e40af;
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .still-questions h2 {
                font-size: 1.5rem;
            }
        }

/* === Styles from services.html === */
.services-detail {
            padding: 5rem 0;
        }

        .service-detail-card {
            scroll-margin-top: 5rem;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }

        .service-detail-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .service-detail-card.featured {
            border: 2px solid var(--primary-color);
            background-color: #f0f4ff;
        }

        .badge-featured {
            position: absolute;
            top: -12px;
            left: 30px;
            background-color: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .service-detail-header {
            margin-bottom: 1.5rem;
        }

        .service-detail-header h2 {
            font-size: 1.75rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .service-detail-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .service-detail-content h3 {
            font-size: 1.125rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            margin-top: 1.5rem;
        }

        .service-details-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-details-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-light);
            line-height: 1.6;
        }

        .service-details-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.25rem;
        }

        .service-note {
            background-color: var(--bg-light);
            padding: 1rem;
            border-left: 4px solid var(--primary-color);
            border-radius: 0.25rem;
            color: var(--text-dark);
        }

        .flexibility {
            background-color: var(--bg-light);
            padding: 4rem 0;
            text-align: center;
        }

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

        .flexibility p {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


/* Services Comparison Strip */
.services-comparison {
    padding: 2.5rem 0 0;
    background-color: var(--bg-light);
}

.comparison-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.comparison-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 0.5rem;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.comparison-item h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.comparison-item p {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.comparison-featured {
    border: 2px solid var(--primary-color);
    background-color: #faf7f4;
}

.comparison-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Service card colored left borders */
.service-border-blue {
    border-left: 4px solid #2c5aa0 !important;
}

.service-border-green {
    border-left: 4px solid #059669 !important;
}

.service-border-purple {
    border-left: 4px solid #7c3aed !important;
}

.service-border-warm {
    border-left: 4px solid var(--accent-color) !important;
}

/* Get Started buttons inside service cards */
.service-detail-content .btn {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .comparison-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .comparison-strip {
        grid-template-columns: 1fr;
    }
}


/* About page - pullquote */
.about-pullquote {
    margin: 3rem 0;
    text-align: center;
}

.about-pullquote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

/* About page - credentials bar */
.credentials-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.credential-item strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.credential-item span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .credentials-bar {
        grid-template-columns: 1fr;
    }

    .about-pullquote blockquote {
        font-size: 1.25rem;
    }
}


/* FAQ Accordion */
.faq-group {
    margin-bottom: 3rem;
}

.faq-group-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-accordion {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-accordion.open .faq-answer {
    max-height: 500px;
    padding: 0 0 1.25rem 0;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0.5rem 0 0.75rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 0.35rem;
}


/* Blog Cards */
.blog-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
    scroll-margin-top: 5rem;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.blog-card-featured {
    border-left: 4px solid #2c5aa0;
}

.blog-card-header {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.blog-card-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-featured .blog-card-image {
    width: 150px;
    height: 150px;
}

.blog-card-text {
    flex: 1;
    min-width: 0;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.blog-card-meta .post-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.blog-latest-badge {
    background-color: #2c5aa0;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-featured .blog-card-header h2 {
    font-size: 1.75rem;
}

.blog-card-excerpt {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-card.open .blog-arrow {
    transform: rotate(180deg);
}

.blog-card.open .blog-read-more {
    display: none;
}

.blog-card-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.blog-card.open .blog-card-body {
    max-height: 5000px;
    padding: 0 2.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-loading {
    color: var(--text-light);
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .blog-card-header {
        padding: 1.5rem;
    }

    .blog-card.open .blog-card-body {
        padding: 0 1.5rem 1.5rem;
    }

    .blog-card-header h2 {
        font-size: 1.25rem;
    }

    .blog-card-featured .blog-card-header h2 {
        font-size: 1.35rem;
    }
}


@media (max-width: 640px) {
    .blog-card-header {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-card-image,
    .blog-card-featured .blog-card-image {
        width: 100%;
        height: 180px;
    }
}
