.vc-wrapper-36b8dd79 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vc-card-36b8dd79 {
    display: flex;
    align-items: center; /* Default vertical align for the card wrapper */
    background-color: var(--vc-bg-color, #ffffff);
    border-radius: 12px;
    padding: 20px 30px;
    text-decoration: none !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.vc-card-36b8dd79:hover {
    background-color: var(--vc-hover-bg-color, #f9f9fc);
}

.vc-card-image-36b8dd79 {
    flex-shrink: 0;
    margin-right: 30px;
    width: 120px;
}

.vc-card-image-36b8dd79 img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.vc-card-content-36b8dd79 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vc-card-heading-36b8dd79 {
    margin: 0;
    color: var(--vc-title-color, #336281);
    font-weight: 700;
    font-size: 24px;
    transition: color 0.3s ease;
}

.vc-card-description-36b8dd79 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    color: var(--vc-desc-color, #555555);
    font-size: 16px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Hover Reveal Logic */
.vc-card-36b8dd79:hover .vc-card-description-36b8dd79 {
    max-height: 150px;
    opacity: 1;
    margin-top: 8px;
}

/* Show Always Logic */
.vc-show-always-yes .vc-card-description-36b8dd79 {
    max-height: 150px;
    opacity: 1;
    margin-top: 8px;
}

.vc-card-arrow-36b8dd79 {
    flex-shrink: 0;
    margin-left: 20px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    color: var(--vc-arrow-color, #336281);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-card-arrow-36b8dd79 i {
    font-weight: bold;
}

.vc-card-arrow-36b8dd79 svg {
	fill: var(--vc-arrow-color, #336281);
}

/* Arrow Reveal Logic */
.vc-card-36b8dd79:hover .vc-card-arrow-36b8dd79 {
    opacity: 1;
    transform: translateX(0);
}

/* Show Always Logic for Arrow */
.vc-show-always-yes .vc-card-arrow-36b8dd79 {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Display - Show by default */
@media (max-width: 767px) {
    .vc-card-36b8dd79 {
        flex-direction: column;
        padding: 25px 20px;
		align-items: stretch; /* Allow children to take full width */
    }
    .vc-card-image-36b8dd79 {
        margin-right: 0;
        margin-bottom: 20px;
		align-self: center; /* Center image horizontally */
    }
	.vc-card-content-36b8dd79 {
		align-items: center; /* Center content horizontally */
		text-align: center;
	}
    .vc-card-arrow-36b8dd79 {
        display: flex;
		opacity: 1;
		transform: none;
		margin-top: 15px;
		margin-left: 0;
		justify-content: center; /* Center icon horizontally */
		width: 100%;
    }
    .vc-card-description-36b8dd79 {
        max-height: 250px;
        opacity: 1;
        margin-top: 10px;
    }
}