:root {
  --purple-primary: #8E44AD;
  --yellow-primary: #F1C40F;
  --dark-bg: #0F0F0F;
  --light-text: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.faq-header {
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../images/logo3.png');
  background-size: cover;
  background-position: center;
}

.faq-header h1 {
  font-size: 3.5rem;
  color: var(--yellow-primary);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInDown 1s ease-out;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.faq-item {
  background: #242424;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--yellow-primary);
  background: #1a1a1a;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--purple-primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

.social-bar {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--purple-primary);
}

.footer {
  text-align: center;
  padding: 2rem;
  background: #0a0a0a;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 2.5rem;
  }
  
  .social-bar {
    position: static;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
  }
}