.zia-wrapper {
    display: flex;
    gap: 20px;
}

/* LEFT */
.zia-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zia-tab {
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zia-tab.active {
    background: #0D316C;
    color: #fff;
}
.zia-tab.active span.zia-icon svg path {
    fill: #fff !important;
}
/* RIGHT */
.zia-right {
    width: 65%;
}

/* ITEM */
.zia-item {
    display: none;
}

.zia-item.active {
    display: block;
}

.zia-tab {
    transition: all 0.3s ease;
    /*border-left: 4px solid transparent;*/
}

.zia-tab.active {
    /*border-left: 4px solid #0D316C;*/
}

.zia-tab:hover {
    /*border-left: 4px solid #0D316C;*/
}

.zia-tab:hover {
    background: #0D316C;
    color: #fff;
}
.zia-tab:hover svg {
    fill: #ffffff;
}
.zia-tab:hover svg path {
    fill: #ffffff;
}
/* ICON STYLE */
.zia-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
}

/* ANIMATION */
.zia-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

/* ACCORDION ARROW */
.zia-arrow {
    margin-left: auto;
}

.zia-item.active .zia-arrow {
    transform: rotate(45deg);
}

/* CONTENT */
.zia-content {
    background: #eef1f6;
    padding: 25px;
    border-radius: 12px;
}

/* =============================
   LAYOUT FIX
============================= */

.zia-wrapper {
    gap: 60px;
}

.zia-left {
    width: 45%;
}

.zia-right {
    width: 55%;
}



/* =============================
   RIGHT CONTENT SPACING FIX
============================= */

.zia-content {
    padding: 25px; /* reduced top/bottom */
}

/* Remove extra spacing after "You get" */
.zia-content h3 {
    margin-bottom: 8px;
}

.zia-desc p {
    margin-bottom: 10px;
}

/* Reduce space before list */
.zia-desc ul {
    margin-top: 5px;
}


/* =============================
   "TYPICAL FLOW" BOX
============================= */

.zia-desc .typical-flow,
.zia-content .typical-flow {
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    margin-top: 15px;
}

/* If you're not using class, target last block */
.zia-desc p:last-child {
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
}
.zia-content,
.zia-content ul,
.zia-content p{
    font-size: 17px;
    font-family: 'inter';
    line-height: 23px;
}
.zia-content ul {
    line-height: 30px;
}
.zia-content ul li::marker {
    color: #022CF8;
    font-size: 18px;
}
.zia-content strong{
    font-size: 19px;
    font-family: 'inter';
    line-height: 23px;
}
.zia-content p {
    margin-bottom: 10px;
}
.zia-typical-flow {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.zia-typical-flow strong {
    display: block;
    margin-bottom: 5px;
}


/* =============================
   BULLET COLOR (BLUE)
============================= */

.zia-desc ul li::marker {
    color: #2563eb;
}

/* MOBILE HEADER */
.zia-accordion-header {
    display: none;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

/* MOBILE */
@media (max-width: 767px) {

    .zia-wrapper {
        flex-direction: column;
    }

    .zia-left {
        display: none;
    }

    .zia-right {
        width: 100%;
    }

    .zia-item {
        display: block;
        margin-bottom: 10px;
    }

    .zia-accordion-header {
        display: flex;
    }

    .zia-content {
        display: none;
        margin-top: 10px;
    }

    .zia-item.active .zia-content {
        display: block;
    }
	.zia-item.active .zia-accordion-header {
		background: #1b326d;
		color: #fff;
		font-size: 18px;
		font-weight: 600;
		font-family: 'Inter';
		padding: 10px;
	}
	.zia-item .zia-accordion-header {
		background: #F7F7F7
		color: #000;
		font-size: 18px;
		font-weight: 600;
		font-family: 'Inter';
		padding: 10px;
	}
	.zia-item .zia-arrow {
		display: none;
	}
	.zia-item.active .zia-icon svg path {
		fill: #fff !important;
	}

}