.support-cards {
  margin-bottom: 5rem;
}

.support-card {
  text-align: center;
  align-items: center;
  padding: 2.5rem 2rem;
}

.support-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.support-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.icon-box {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.3s;
}

.icon-box.cyan {
  color: #00d9f6;
  border-color: rgba(0, 217, 246, 0.3);
}
.icon-box.orange {
  color: #ff9f00;
  border-color: rgba(255, 159, 0, 0.3);
}
.icon-box.green {
  color: #58cc02;
  border-color: rgba(88, 204, 2, 0.3);
}

.support-card:hover .icon-box {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}

.faq-container h3 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

details {
  background: #24262b;
  border: 1px solid #383c44;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

details[open] {
  border-color: #00d9f6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #ebebeb;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: 0.3s;
}

summary:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #00d9f6;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #00d9f6;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #b9bbbe;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
  animation: slideDown 0.3s ease-out;
}

.btn-support {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid;
  margin-top: auto;
}

.btn-tech {
  color: #00d9f6;
  border-color: #00d9f6;
}

.btn-tech:hover {
  background-color: #00d9f6;
  color: #18191c;
  box-shadow: 0 0 15px rgba(0, 217, 246, 0.4);
}

.btn-question {
  color: #ff9f00;
  border-color: #ff9f00;
}

.btn-question:hover {
  background-color: #ff9f00;
  color: #18191c;
  box-shadow: 0 0 15px rgba(255, 159, 0, 0.4);
}

.btn-idea {
  color: #58cc02;
  border-color: #58cc02;
}

.btn-idea:hover {
  background-color: #58cc02;
  color: #18191c;
  box-shadow: 0 0 15px rgba(88, 204, 2, 0.4);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

summary::-webkit-details-marker {
  display: none;
}
