.yazilum-faq-container-a7f74f8e {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 800px;
    font-family: inherit;
    box-sizing: border-box; /* Prevent padding from expanding width */
}

.yazilum-faq-item-a7f74f8e {
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.yazilum-faq-header-a7f74f8e {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
    color: inherit;
    box-sizing: border-box;
}

.yazilum-faq-icon-a7f74f8e {
    margin-right: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.yazilum-faq-icon-a7f74f8e svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.yazilum-faq-title-a7f74f8e {
    font-weight: 600;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
    color: inherit;
    word-break: break-word; /* Prevent long words from expanding container */
}

.yazilum-faq-toggle-icon-a7f74f8e {
    margin-left: 15px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    color: inherit;
    flex-shrink: 0;
}

.yazilum-faq-item-a7f74f8e.is-active .yazilum-faq-toggle-icon-a7f74f8e {
    transform: rotate(180deg);
}

.yazilum-faq-body-a7f74f8e {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.yazilum-faq-item-a7f74f8e.is-active .yazilum-faq-body-a7f74f8e {
    max-height: 1000px;
}

.yazilum-faq-content-a7f74f8e {
    padding: 0 20px 20px 59px;
    line-height: 1.6;
    font-size: 0.95rem;
    box-sizing: border-box;
    width: 100%;
}

/* Aggressive Responsive Fixes for Overflow */
@media (max-width: 768px) {
    .yazilum-faq-container-a7f74f8e {
        max-width: 100vw;
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden; /* Force hide any potential overflow */
    }
    .yazilum-faq-item-a7f74f8e {
        max-width: 100%;
    }
    .yazilum-faq-content-a7f74f8e {
        padding: 0 15px 15px 15px;
        width: 100%;
    }
    .yazilum-faq-header-a7f74f8e {
        padding: 12px 15px;
        width: 100%;
    }
}