/* Rank Math FAQ Styling - Altın/Amber Tema */
#rank-math-faq {
    font-family: inherit;
    margin: 25px 0;
}

#rank-math-faq .rank-math-list-item {
    border: 1px solid #e1aa51;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #fdfaf2;
    box-shadow: 0 2px 6px rgba(225, 170, 81, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

#rank-math-faq .rank-math-list-item:hover {
    box-shadow: 0 4px 12px rgba(225, 170, 81, 0.25);
    transform: translateY(-2px);
}

#rank-math-faq .rank-math-question {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 17px 56px 17px 15px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    color: #444;
    background: linear-gradient(135deg, #f0c77f 0%, #e1aa51 60%, #d39e45 100%);
    user-select: none;
    display: block;
    transition: all 0.2s ease;
}

#rank-math-faq .rank-math-question.faq-q-open {
    border-bottom: 1px solid #e9c782;
    color: #333;
}

#rank-math-faq .rank-math-question:after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    width: 56px;
    text-align: center;
    transform: translateY(-50%);
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

#rank-math-faq .rank-math-question.faq-q-open:after {
    content: "−";
    transform: translateY(-50%) rotate(0deg);
}

#rank-math-faq .rank-math-answer {
    margin: 0;
    padding: 15px 18px;
    background-color: #fff;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #444;
    border-top: none;
    display: none;
    box-shadow: inset 0 1px 3px rgba(225, 170, 81, 0.1);
}

#rank-math-faq .rank-math-answer p:last-child {
    margin-bottom: 0;
}

#rank-math-faq .RMFA-quesion-button {
    all: unset !important;
}

/* Hover Efektleri */
#rank-math-faq .rank-math-question:hover {
    background: linear-gradient(135deg, #f3d08f 0%, #e5b565 60%, #d9a85a 100%);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    #rank-math-faq .rank-math-question {
        font-size: 15px;
        padding: 15px 50px 15px 12px;
    }
    
    #rank-math-faq .rank-math-answer {
        font-size: 14px !important;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    #rank-math-faq .rank-math-question {
        font-size: 14px;
        padding: 12px 45px 12px 10px;
    }
    
    #rank-math-faq .rank-math-question:after {
        width: 45px;
        font-size: 18px;
    }
    
    #rank-math-faq .rank-math-answer {
        font-size: 13px !important;
        padding: 10px 12px;
    }
}