.fa-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.fa-accordion {
    flex: 1;
}
.fa-accordion details {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}
.fa-accordion summary {
    font-weight: 600;
    list-style: none;
    cursor: pointer;
    color: #F19CA5;
}
.fa-media {
    width: 100%;
    flex: 1;
    position: relative;
}
.fa-media video,
.fa-media img {
    width: 100%;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    border-radius: .25rem;
}
.fa-media video.fade-out,
.fa-media img.fade-out {
    opacity: 0;
}
.fa-media video::-webkit-media-controls {
    display: none;
}
.fa-accordion summary .fa-icon svg {
    vertical-align: middle;
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 6px;
}
.fa-item {
    margin-bottom: 1.5rem;
}
.fa-icon {
    margin-right: 8px;
}
.fa-item.open .fa-content {
    transform: scaleY(1);
    opacity: 1;
}
.fa-summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.fa-content {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.4s ease, opacity 0.4s ease;
    line-height: 1.5rem;
}
.fa-content p {
    padding: 0;
}
.fa-item.open .fa-content {
    height: auto;
    opacity: 1;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .fa-container {
        flex-direction: column;
    }
    .fa-accordion,
    .fa-media {
        flex: 1 1 100%;
    }
    .fa-media {
        margin-top: 1.5rem;
    }
}