.product-image {
    width: 500px;
    height: 300px;
    object-fit: contain;
    /* Resmi orantılı şekilde keser, boyutlara uydurur */
}

.faq-container {
    padding: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;  
    font-weight: bold; 
    font-size: 20px; 
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fafafa;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 18px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* yeterince büyük bir değer */
    padding: 15px 20px;
}