.container__accordion {
    padding-bottom: 2rem;
    background: var(--tg-color-brand);
}
.content__accordion {
    padding: 50px;
    text-align: center;
}
@media screen and (min-width: 1500px) {
    .content__accordion {
        min-height: 730px;
        max-height: 730px;
    }
}
.accordion__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
}
.accordion__subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ffffff;
}
.image-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100%; /* Ensure the container has height for vertical centering */
}
.image-container img {
    margin-top: 40px;
    max-width: 895px;
    max-height: 547px;
    height: auto;
    transition: transform 2s ease, opacity 2s ease;
}
@media screen and (max-width: 768px) {
    .image-container img {
        max-width: 100%;
        max-height: 100%;
    }
}
.features {
    margin-top: 50px;
    text-align: left;
    position: relative;
}
.accordion-item {
    background: transparent;
    border: none;
}
.accordion-header {
    display: flex;
    align-items: center;
}
.accordion-button {
    background: transparent;
    color: white;
    font-size: 1rem;
    border: none;
    padding-left: 0;
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    box-shadow: none;
    background-color: transparent;
}
.accordion-button::after {
    display: none;
}
.accordion-header .dot {
    position: relative;
    width: 10px;
    height: 10px;
    margin-right: 10px;
}
.accordion-header .dot-inner {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
    position: relative;
    left: 1px;
}
.accordion-header .dot::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 60%;
    width: 2px;
    height: 45px;
    background: repeating-linear-gradient(
        to bottom,
        white,
        white 2px,
        transparent 2px,
        transparent 4px
    );
    transform: translateX(-50%);
    z-index: 1;
}
.accordion-item:last-child .dot::after {
    display: none;
}
.dot.expanded .dot-inner {
    transform: scale(1.5);
    background-color: #0299f4;
    right: 4px;
}
.dot.expanded::after {
    height: 120px;
    z-index: 1;
}
@media (max-width: 768px) {
    .dot.expanded::after {
        height: 147.5px;
    }
}
.accordion-body {
    font-size: 0.9rem;
    color: #ffffff;
    padding-left: 1.5rem;
}
