/* Accordion with Left Image - Layout & Styles */
.ia-wrapper-22510c3e {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

/* Image Column on Left */
.ia-image-col {
    position: relative;
    width: 45%;
    height: 500px;
    overflow: hidden;
}

.ia-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.ia-img-wrapper.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.ia-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accordion Column on Right */
.ia-accordion-col {
    display: flex;
    flex-direction: column;
    width: calc(100% - 45% - 40px);
}

.ia-item {
    border-radius: 0 !important;
    overflow: hidden;
}

.ia-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    background: transparent !important;
    border-bottom: 1px solid #000000;
    position: relative;
    user-select: none;
    border-radius: 0 !important;
}

.ia-header-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
}

.ia-content-wrapper {
    overflow: hidden;
    border-radius: 0 !important;
}

.ia-content {
    padding: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    border: none !important;
}

.ia-button-wrapper {
    display: block;
}

.ia-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
	font-family:Figtree;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  color: #000 !important;
  background-color: #fff !important;
  border: 1px solid #000 !important;
  border-radius: 10px !important;
	
}

.ia-btn:hover {
    opacity: 0.9;
}

/* Progress Indicator */
.ia-progress-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.ia-progress-bar {
    width: 0%;
    height: 2px;
    background-color: #000000;
}

/* Responsive viewports */
@media (max-width: 767px) {
    .ia-wrapper-22510c3e {
        flex-direction: column !important;
        display: flex !important;
    }
    .ia-image-col {
        width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        margin-bottom: 20px !important;
        order: -1 !important;
    }
    .ia-accordion-col {
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }
}
