@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/TelegrafRegular_272984568a25d8528fe2de8b20b29011.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraBold 800.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Telegraf';
  src: url('../Fonts/Telegraf UltraLight 200.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  font-family: 'Telegraf', sans-serif;
  box-sizing: border-box;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../BackgroundImage/Background.jpg') center center/cover no-repeat;
  z-index: -1;
  animation: zoomInBg 6s ease-in-out forwards;
}

@keyframes zoomInBg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

.sss-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 75px auto 0 auto;
  max-width: 1100px;
}

.sss-card.wide {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
  padding: 24px 56px;
  /* üst-alt 24px, sağ-sol 56px */
  color: #fff;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInBox 1s cubic-bezier(.23, 1.02, .64, 1) both;
}

.sss-card.wide h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 32px;
  color: #f67b1d;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  text-align: center;
  animation: fadeInTitle 1.2s cubic-bezier(.23, 1.02, .64, 1) both;
}

.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #f67b1d;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.3s;
  padding: 0 15px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 20px;
  line-height: 1.7;
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
}

.faq-item.active .faq-answer {
  padding-top: 5px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  color: #f67b1d;
}

@keyframes fadeInBox {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInTitle {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .sss-cards {
    margin: 60px 0 0 0;
    padding: 0 8px;
  }

  .sss-card.wide {
    padding: 32px 10px;
    max-width: 98vw;
  }
}