
.aaf-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: sans-serif;
}

.aaf-item {
    background: linear-gradient(135deg, #b58d61, #183c28);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aaf-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.aaf-question {
    padding: 20px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    position: relative;
    right: 30px;
}

.aaf-question::after {
    content: '+';
    position: absolute;
    right: -6px;
    transition: transform 0.3s ease;
}

.aaf-item.active .aaf-question::after {
    content: '-';
    transform: rotate(180deg);
}

.aaf-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    padding: 0 20px;
    transition: max-height 0.6s ease, padding 0.4s ease;
}

.aaf-item.active .aaf-answer {
    max-height: 500px;
    padding: 20px;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
