.elementor-564 .elementor-element.elementor-element-28f0f11{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-564 .elementor-element.elementor-element-e0f10a5{--display:flex;}.elementor-564 .elementor-element.elementor-element-11118fa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-564 .elementor-element.elementor-element-74606da{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4f606cc *//* Konteyner */
.accordion-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
}

/* Kart Yapısı */
.acc-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.acc-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.acc-card.active {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Başlık Alanı */
.acc-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.acc-title strong {
    font-size: 16px;
    color: #111827;
    display: block;
}

.acc-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.acc-icon {
    font-size: 18px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.acc-card.active .acc-icon {
    transform: rotate(180deg);
    color: #3b82f6;
}

/* İçerik Alanı (Gizli olan kısım) */
.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9fafb;
}

/* Bilgi Düzeni (Grid) */
.details-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    border-top: 1px solid #f3f4f6;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 14px;
    color: #374151;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* Metin Alanları (Geniş görünümler için) */
.detail-item:has(p:empty) { display: none; } /* Boş verileri gizle *//* End custom CSS */