/* GYIK oldal stílusai */
.gyik-section {
  max-width: 800px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
}
.gyik-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #1761a0;
  text-align: center;
  margin: 2.5rem 0 2rem 0;
}
.gyik-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.gyik-item {
  border-bottom: 1px solid #e0e6ea;
  padding: 0.7rem 0;
}
.gyik-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.18rem;
  font-weight: 700;
  color: #222;
  text-align: left;
  cursor: pointer;
  padding: 0.7rem 0;
  transition: color 0.2s;
  position: relative;
}
.gyik-item.open .gyik-question {
  color: #d32f2f;
}
.gyik-answer {
  display: none;
  padding: 0.5rem 0 0.2rem 0.2rem;
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
  animation: fadeIn 0.3s;
}
.gyik-item.open .gyik-answer {
  display: block;
}
.cta-section {
  text-align: center;
  margin: 2.5rem 0 3.5rem 0;
}
.cta-big {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
  border-radius: 64px;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(0, 123, 255, 0.11);
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .gyik-section {
    padding: 0.7rem 0.2rem;
  }
  .gyik-title {
    font-size: 1.3rem;
  }
  .gyik-question {
    font-size: 1rem;
  }
  .gyik-answer {
    font-size: 0.98rem;
  }
} 

@media (max-width: 850px) {
  .gyik-section {
    margin-left: 10px;
    margin-right: 10px;
  }

} 