.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.faq-question:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff5f5;
    opacity: 0;
    color: #4a5568;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 2000px;
    opacity: 1;
}

/* Modern Stil */
.faq-style-modern .faq-question {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.faq-style-modern .faq-item.active .faq-question {
    border-radius: 12px 12px 0 0;
}

/* Minimal Stil */
.faq-style-minimal .faq-question {
    background: #fff5f5;
    color: #ff6b6b;
    border-bottom: 2px solid #ffb8b8;
    border-radius: 0;
}

.faq-style-minimal .faq-question h3 {
    color: #ff6b6b;
}

.faq-style-minimal .faq-item {
    border-radius: 0;
}

/* Kart Stili */
.faq-style-card .faq-item {
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.faq-style-card .faq-question {
    background: white;
    color: #ff6b6b;
    border-radius: 12px 12px 0 0;
}

.faq-style-card .faq-question h3 {
    color: #ff6b6b;
}

/* Gölgeli Stil */
.faq-style-shadow .faq-item {
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

.faq-style-shadow .faq-question {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

/* Gradyan Stil - Varsayılan kırmızı-turuncu */
.faq-style-gradient .faq-question {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

/* İkon Stilleri */
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Ok İkonu */
.faq-icon-arrow:before,
.faq-icon-arrow:after {
    content: '';
    position: absolute;
    background: white;
    transition: all 0.3s ease;
}

.faq-style-minimal .faq-icon-arrow:before,
.faq-style-minimal .faq-icon-arrow:after,
.faq-style-card .faq-icon-arrow:before,
.faq-style-card .faq-icon-arrow:after {
    background: #ff6b6b;
}

.faq-icon-arrow:before {
    width: 2px;
    height: 12px;
    top: 6px;
    left: 11px;
    transform: rotate(45deg);
}

.faq-icon-arrow:after {
    width: 2px;
    height: 12px;
    top: 6px;
    left: 11px;
    transform: rotate(-45deg);
}

.faq-item.active .faq-icon-arrow:before {
    transform: rotate(-45deg);
}

.faq-item.active .faq-icon-arrow:after {
    transform: rotate(45deg);
}

/* Artı/Eksi İkonu */
.faq-icon-plus_minus:before,
.faq-icon-plus_minus:after {
    content: '';
    position: absolute;
    background: white;
    transition: all 0.3s ease;
}

.faq-style-minimal .faq-icon-plus_minus:before,
.faq-style-minimal .faq-icon-plus_minus:after,
.faq-style-card .faq-icon-plus_minus:before,
.faq-style-card .faq-icon-plus_minus:after {
    background: #ff6b6b;
}

.faq-icon-plus_minus:before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-icon-plus_minus:after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-item.active .faq-icon-plus_minus:before {
    transform: rotate(90deg);
    opacity: 0;
}

/* Chevron İkonu */
.faq-icon-chevron:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-style-minimal .faq-icon-chevron:before,
.faq-style-card .faq-icon-chevron:before {
    border-color: #ff6b6b;
}

.faq-item.active .faq-icon-chevron:before {
    transform: rotate(-135deg);
}

/* Daire İkonu */
.faq-icon-circle {
    border: 2px solid white;
    border-radius: 50%;
}

.faq-style-minimal .faq-icon-circle,
.faq-style-card .faq-icon-circle {
    border-color: #ff6b6b;
}

.faq-icon-circle:before,
.faq-icon-circle:after {
    content: '';
    position: absolute;
    background: white;
}

.faq-style-minimal .faq-icon-circle:before,
.faq-style-minimal .faq-icon-circle:after,
.faq-style-card .faq-icon-circle:before,
.faq-style-card .faq-icon-circle:after {
    background: #ff6b6b;
}

.faq-icon-circle:before {
    width: 2px;
    height: 10px;
    top: 7px;
    left: 11px;
}

.faq-icon-circle:after {
    width: 10px;
    height: 2px;
    top: 11px;
    left: 7px;
}

.faq-item.active .faq-icon-circle:before {
    opacity: 0;
}

/* Kategori Filtre */
.faq-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.faq-filter-btn {
    padding: 10px 20px;
    border: none;
    background: #fff5f5;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #ff6b6b;
}

.faq-filter-btn:hover {
    background: #ffb8b8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.faq-filter-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Yazar Bilgileri Stili */
.faq-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.faq-author-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #ffb8b8;
}

.faq-author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.faq-author-name {
    font-weight: 600;
    color: #ff6b6b;
    font-size: 14px;
}

.faq-author-name a {
    color: #ff6b6b;
    text-decoration: none;
}

.faq-author-name a:hover {
    text-decoration: underline;
}

.faq-post-date {
    font-size: 12px;
    color: #999;
}

/* Yazarın Diğer SSS'leri */
.faq-author-other-faqs {
    margin-top: 10px;
}

.faq-other-faqs-toggle {
    display: inline-block;
    font-size: 13px;
    color: #ff8e53;
    cursor: pointer;
    border-bottom: 1px dashed #ffb8b8;
    transition: all 0.3s ease;
}

.faq-other-faqs-toggle:hover {
    color: #ff6b6b;
}

.faq-other-faqs-content {
    margin-top: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    font-size: 13px;
    display: none;
}

.faq-other-faqs-content.active {
    display: block;
}

.author-other-faqs-list {
    margin: 0;
    padding-left: 20px;
}

.author-other-faqs-list li {
    margin-bottom: 5px;
}

.author-other-faqs-list a {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 13px;
}

.author-other-faqs-list a:hover {
    text-decoration: underline;
}

/* Görsel Stili */
.faq-image {
    margin-top: 20px;
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease;
}

.faq-image img:hover {
    transform: scale(1.02);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .faq-author-info {
        flex-direction: column;
        text-align: center;
    }
}