/* Genel Stil */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #d4af37;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1501776191288-87f94f32a2c5?auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  backdrop-filter: brightness(0.3);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffd700;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0e68c;
}

a.button {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

a.button:hover {
  background-color: #d4af37;
  color: black;
}

/* SSS Bölümü */
.faq-section {
  background-color: rgba(0, 0, 0, 0.85);
  margin: 60px auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  color: #fff8dc;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #ffd700;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #555;
  padding: 15px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: bold;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #d4af37;
}

.faq-icon {
  margin-left: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  font-size: 16px;
  color: #f5f5dc;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* Maksimum uzunluk: ihtiyaca göre ayarlanabilir */
}

        footer {
            background-color: #111;
            color: #fff;
            padding: 10px;
            position: fixed;
            bottom: 0;
            text-align: center;
        }

/* Mobil uyumlu tasarım */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .faq-section {
    padding: 20px;
  }

  .faq-item {
    padding: 10px 0;
  }

  a.button {
    padding: 10px 25px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Web Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

/* FAQ Icon Animasyonu */
.faq-question:hover .faq-icon {
  transform: rotate(180deg);
}
