.techtezas-faq-container {
  max-width: 80vw;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}

.techtezas-faq-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 50px 30px;
  text-align: center;
}

.techtezas-faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.techtezas-faq-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.techtezas-faq-content {
  padding: 50px 30px;
}

.techtezas-faq-item {
  margin-bottom: 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.techtezas-faq-item:hover {
  border-color: #667eea;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.techtezas-faq-question {
  background: #f8f9fa;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.techtezas-faq-question:hover {
  background: #f0f1f5;
}

.techtezas-faq-question h3 {
  font-size: 1.15rem;
  color: #2d3748;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.techtezas-faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.techtezas-faq-item.techtezas-active .techtezas-faq-icon {
  transform: rotate(45deg);
}

.techtezas-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  background: white;
}

.techtezas-faq-item.techtezas-active .techtezas-faq-answer {
  max-height: 500px;
  padding: 25px 30px;
}

.techtezas-faq-answer p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
}

.techtezas-faq-footer {
  background: #f8f9fa;
  padding: 30px;
  text-align: center;
  border-top: 2px solid #e8e8e8;
}

.techtezas-faq-footer h3 {
  color: #2d3748;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.techtezas-faq-footer p {
  color: #718096;
  font-size: 1rem;
}

.techtezas-contact-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.techtezas-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .techtezas-faq-header h1 {
    font-size: 1.8rem;
  }

  .techtezas-faq-header p {
    font-size: 1rem;
  }

  .techtezas-faq-content {
    padding: 30px 20px;
  }

  .techtezas-faq-question {
    padding: 20px;
  }

  .techtezas-faq-question h3 {
    font-size: 1rem;
  }

  .techtezas-faq-item.techtezas-active .techtezas-faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .techtezas-faq-header {
    padding: 30px 20px;
  }

  .techtezas-faq-question h3 {
    font-size: 0.95rem;
  }

  .techtezas-faq-icon {
    width: 25px;
    height: 25px;
    font-size: 1.1rem;
  }
}
