.custom-accordion-safe-area {
    width: 100%;
    margin: 40px 0;
    display: flow-root;
}

.custom-accordion-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.image-column, .accordion-box {
    flex: 1;
    min-width: 0;
}

.image-column { display: flex; }

.image-box {
    width: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 600px;
}

@supports (aspect-ratio: 1 / 1) {
    .image-box { min-height: auto; aspect-ratio: 1 / 1; }
}

.feature-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.5s ease;
}
.feature-img.active { opacity: 1; }

.accordion-box { display: flex; flex-direction: column; gap: 12px; }

.acc-item {
    background: rgba(0, 98, 255, 0.03);
    border: 1px solid rgba(0, 98, 255, 0.05);
    padding: 30px; border-radius: 30px; cursor: pointer; overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 80px;
}

.acc-item.active {
    flex: 1;
    background: linear-gradient(135deg, #0056b3 0%, #00d4ff 100%);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
    border: none;
}

.acc-header {
    display: flex; justify-content: space-between;
    font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: #003366;
}
.acc-item.active .acc-header { color: #ffffff; }

.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s ease; }
.acc-item.active .acc-body { grid-template-rows: 1fr; }
.inner { overflow: hidden; }

.inner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3.2vw, 34px);
    margin: 35px 0 20px; line-height: 1.1; font-weight: 700; color: #ffffff;
}

.inner p {
    font-family: 'Roboto', sans-serif; font-size: 15px;
    margin-bottom: 30px; line-height: 1.7; color: rgba(255,255,255,0.9);
}

.acc-btn {
    display: inline-block; background: #ffffff; color: #0056b3;
    padding: 12px 28px; border-radius: 50px; text-decoration: none;
    font-size: 13px; font-weight: 500; transition: 0.3s;
}

@media (max-width: 991px) {
    .custom-accordion-wrapper { flex-direction: column; }
    .image-box { min-height: 400px; aspect-ratio: auto; }
}