/* General Styles */
:root {
    --primary-color: #4a90a4;
    --secondary-color: #ff6b3d;
    --text-dark: #231f20;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-blue: #e8f4f8;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
}

.brand-reliable {
    color: var(--text-dark);
    font-weight: 700;
}

.brand-insurance {
    color: var(--primary-color);
    font-weight: 700;
}
.navbar-nav .nav-item 
{
    margin-right: 20px;
}
.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #3d7a8d;
    border-color: #3d7a8d;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-blue);
    padding: 4rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Insurance Type Cards */
.insurance-types {
    margin-bottom: 2rem;
}

.insurance-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.insurance-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(74, 144, 164, 0.2);
}

.insurance-card.active {
    border-color: var(--primary-color);
    background-color: #f0f8fb;
    box-shadow: 0 4px 8px rgba(74, 144, 164, 0.3);
}

.insurance-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.insurance-card span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    display: block;
}

/* ZIP Code Form */
.zip-form {
    max-width: 500px;
}

.zip-form p {
    font-weight: 500;
    color: var(--text-dark);
}

.zip-form .input-group-text {
    background-color: white;
    border-right: none;
}

.zip-form .form-control {
    border-left: none;
    border-right: none;
    padding: 0.75rem;
}

.zip-form .form-control:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.btn-compare {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.btn-compare:hover {
    background-color: #e55a2e;
    color: white;
}

/* Partners Section */
.partners-section {
    padding: 3rem 0;
    background-color: white;
    overflow: hidden;
}

.partners-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.partners-slider-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.partners-slider {
    display: flex;
    width: max-content;
    animation: slideInfinite 30s linear infinite;
}

.partner-slide {
    flex: 0 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-slide img {
    height: 45px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.partner-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-slider-wrapper:hover .partners-slider {
    animation-play-state: paused;
}

/* Small Partner Slider */
.partners-slider-wrapper-small {
    overflow: hidden;
    padding: 1rem 0;
    width: 70%;
    max-width: 100%;
    margin: 0 auto;
}

.partners-slider-small {
    display: flex;
    width: max-content;
    animation: slideInfinite 25s linear infinite;
}

.partner-slide-small {
    flex: 0 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-slide-small img {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-slide-small img:hover {
    opacity: 1;
}

.partners-slider-wrapper-small:hover .partners-slider-small {
    animation-play-state: paused;
}

.partners-logos-small {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.partners-logos-small img {
    height: 30px;
    opacity: 0.6;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.features-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card-new {
    padding: 2.5rem 2rem;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-new:hover::before {
    transform: scaleX(1);
}

.feature-card-new:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(74, 144, 164, 0.15);
    transform: translateY(-5px);
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(74, 144, 164, 0.1);
    line-height: 1;
}

.feature-icon-new {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #5ba4c4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.2);
}

.feature-icon-new i {
    font-size: 2rem;
    color: white;
}

.feature-card-new h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-new p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-card {
    padding: 2rem;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Second Quote Section */
.quote-section-2 {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.quote-section-2 h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.insurance-types-2,
.insurance-types-3 {
    display: flex;
    justify-content: center;
}

.insurance-card-2,
.insurance-card-3 {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.insurance-card-2:hover,
.insurance-card-3:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(74, 144, 164, 0.2);
}

.insurance-card-2.active,
.insurance-card-3.active {
    border-color: var(--primary-color);
    background-color: #f0f8fb;
    box-shadow: 0 4px 8px rgba(74, 144, 164, 0.3);
}

.insurance-card-2 i,
.insurance-card-3 i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.insurance-card-2 span,
.insurance-card-3 span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

.zip-form-2,
.zip-form-3 {
    margin-top: 2rem;
}

/* What We Do Section */
.what-we-do-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.what-we-do-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.what-we-do-section .lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.what-we-do-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.what-we-do-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.what-we-do-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.what-we-do-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.what-we-do-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.what-we-do-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), #5ba4c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.video-container {
    max-width: 600px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"%3E%3Crect fill="%234a90a4" opacity="0.3" width="500" height="400"/%3E%3C/svg%3E') center/cover;
    opacity: 0.3;
}

.video-placeholder i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder i:hover {
    transform: scale(1.1);
}

.video-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Calculator Section */
.calculator-section {
    padding: 4rem 0;
    background-color: var(--bg-blue);
}

.calculator-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.calculator-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calculator-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.calculator-form .form-control,
.calculator-form .form-select {
    border-radius: 6px;
    padding: 0.7rem;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #e55a2e;
}

.form-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-check-inline {
    margin-right: 1.5rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: white;
}

.blog-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-section .blog-content {
    padding: 2.5rem;
}

.blog-content a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    text-decoration:none
}
.blog-content a:hover
{
    text-decoration: underline;
}
/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f0f8fb;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a90a4'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a90a4'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.2rem 1.5rem;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background-color: var(--bg-blue);
}

.final-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Footer */
/* .footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer hr {
    border-color: #444;
} */


/* Custom Footer Styling */

.bg-primary-custom {
    background: #f9f9f9;
    /* deep blue like screenshot */
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: rgb(39, 39, 39);
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(0, 0, 0, 1);
}

/* Social Icons */
.footer-social a {
    width: 38px;
    height: 38px;
    background: #000;
    color: #1f2a7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0d6efd;
    color: #fff;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .insurance-card {
        padding: 1rem 0.5rem;
    }

    .insurance-card i {
        font-size: 1.5rem;
    }

    .insurance-card span {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .partner-slide img {
        height: 45px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card-new {
        padding: 2rem 1.5rem;
    }

    .insurance-card-2,
    .insurance-card-3 {
        min-width: 80px;
        padding: 0.8rem 1rem;
    }

    .form-check-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-check-inline {
        margin-right: 0;
    }

    .what-we-do-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .insurance-card {
        padding: 0.8rem 0.3rem;
    }

    .insurance-card i {
        font-size: 1.2rem;
    }

    .insurance-card span {
        font-size: 0.6rem;
    }

    .btn-compare {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .calculator-form {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d7a8d;
}



/* New Features Flow Design */
.features-flow {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}



.feature-flow-item {
    position: relative;
    margin-bottom: 4rem;
    z-index: 1;
}

.feature-flow-item:last-child {
    margin-bottom: 0;
}

.feature-icon-flow {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #5ba4c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(74, 144, 164, 0.3);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.feature-icon-flow::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.feature-icon-flow i {
    font-size: 2.5rem;
    color: white;
}

.feature-content-flow {
    position: relative;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(255, 255, 255, 0.1) 52%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
}

.feature-flow-reverse .feature-content-flow {
    border-left: none;
    border-right: 4px solid var(--primary-color);
    border-radius: 12px 0 0 12px;
}

.feature-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 61, 0.4);
}

.feature-flow-reverse .feature-badge {
    left: auto;
    right: 20px;
}

.feature-content-flow h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.feature-content-flow p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Hide the center line on mobile */
    .features-flow::before {
        display: none;
    }

    /* Stack layout vertically */
    .feature-flow-item .row {
        flex-direction: column !important;
    }

    /* Center the icon column */
    .feature-flow-item .col-md-2 {
        order: 1 !important;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    /* Content comes after icon */
    .feature-flow-item .col-md-10 {
        order: 2 !important;
    }

    /* Icon styling */
    .feature-icon-flow {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }

    .feature-icon-flow::after {
        width: 100px;
        height: 100px;
    }

    .feature-icon-flow i {
        font-size: 2.2rem;
    }

    /* Content box styling - centered with left border */
    .feature-content-flow {
        padding: 3rem 2rem 2rem 2rem;
        text-align: left;
        border-left: 4px solid var(--primary-color);
        border-right: none;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    /* Reset reverse layout */
    .feature-flow-reverse .feature-content-flow {
        border-left: 4px solid var(--primary-color);
        border-right: none;
        border-radius: 0 12px 12px 0;
        text-align: left;
        padding: 3rem 2rem 2rem 2rem;
    }

    /* Badge positioning - top left of content box */
    .feature-badge {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: 20px;
        top: -20px;
    }

    .feature-flow-reverse .feature-badge {
        left: 20px;
        right: auto;
        top: -20px;
    }

    .feature-content-flow h4 {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .feature-content-flow p {
        font-size: 0.95rem;
    }

    /* Adjust spacing for mobile */
    .feature-flow-item {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .feature-icon-flow {
        position: relative;
        top: 45px;
        width: 80px;
        height: 80px;
    }

    .feature-icon-flow::after {
        width: 90px;
        height: 90px;
    }

    .feature-icon-flow i {
        font-size: 2rem;
    }

    .feature-content-flow {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }

    .feature-flow-reverse .feature-content-flow {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }

    .feature-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: 15px;
        top: -18px;
    }

    .feature-flow-reverse .feature-badge {
        left: 15px;
        top: -18px;
    }

    .feature-content-flow h4 {
        font-size: 1.25rem;
    }
}


      /* Blog-specific styles */
        .blog-hero {
            background: linear-gradient(135deg, #4a90a4 0%, #5ba4c4 100%);
            padding: 4rem 0 3rem;
            color: white;
        }

        .blog-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            font-size: 0.9rem;
            opacity: 0.95;
            flex-wrap: wrap;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-container {
            padding: 3rem 0; 
        }

        /* Table of Contents Sidebar */
        .toc-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .toc-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary-color);
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc-list li {
            margin-bottom: 0.75rem;
        }

        .toc-list a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            padding: 0.4rem 0.8rem;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }

        .toc-list a:hover {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            background-color: rgba(74, 144, 164, 0.05);
        }

        .toc-list a.active {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            background-color: rgba(74, 144, 164, 0.08);
            font-weight: 600;
        }

        /* Main Content */
        .blog-content {
            background: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .blog-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid var(--primary-color);
        }

        .blog-content h2:first-child {
            margin-top: 0;
        }

        .blog-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .blog-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .blog-content ul, .blog-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        .blog-content li {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .blog-content strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .info-box h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .info-box p {
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .highlight-box h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Stats Box */
        .stats-box {
            background: linear-gradient(135deg, var(--primary-color) 0%, #5ba4c4 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 2rem 0;
        }

        .stats-box h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .stats-box p {
            font-size: 1.1rem;
            margin-bottom: 0;
            color: white;
            opacity: 0.95;
        }

        /* Table Styling */
        .comparison-table {
            width: 100%;
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .comparison-table thead {
            background: linear-gradient(135deg, var(--primary-color) 0%, #5ba4c4 100%);
            color: white;
        }

        .comparison-table th {
            padding: 1rem;
            font-weight: 600;
            text-align: left;
        }

        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .comparison-table tbody tr:hover {
            background-color: rgba(74, 144, 164, 0.05);
        }

        /* CTA Section */
        .blog-cta {
            background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            margin: 3rem 0;
        }

        .blog-cta h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .blog-cta p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        /* Related Articles */
        .related-articles {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border-color);
        }

        .related-articles h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .related-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            height: 100%;
        }

        .related-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .related-card-body {
            padding: 1.5rem;
        }

        .related-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .related-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .toc-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }

            .blog-content {
                padding: 2rem 1.5rem;
            }

            .blog-hero h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 1.75rem;
            }

            .blog-content h2 {
                font-size: 1.5rem;
            }

            .blog-content {
                padding: 1.5rem 1rem;
            }

            .stats-box h3 {
                font-size: 2.5rem;
            }
        }