/* Genel Stil */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: white;
}

/* Header */
header {
    /*background: linear-gradient(135deg, #1f1f1f, #2c2c2c);*/
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #e1a122;
}

header p {
    font-size: 18px;
    color: #ddd;
}

/* Ana İçerik */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

/* SSS Bölümü */
.faq {
    background: #0e2545;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

.faq h2 {
    text-align: center;
    color: #e1a122;
    font-size: 24px;
    margin-bottom: 20px;
	font-family: 'Bellefair', serif;
}

/* Soru Butonları */
.faq-item {
    background: #e1a122;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Artı simgesi */
.faq-question i {
    transition: transform 0.3s ease;
    color: #0e2545;
}

/* Açılır Alan */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    padding: 0 15px;
}

.faq-answer p {
    padding: 10px 0;
    margin: 0;
    font-size: 16px;
    color: #ddd;
}

/* Açık Durum */
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 10px;
}

/* Simge Döndürme */
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Footer */
footer {
    text-align: left;
    padding: 20px;
    background: #1f1f1f;
    font-size: 14px;
    color: #888;
}
