.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  font-family: "Poppins", Sans-serif;
  /* padding: 50px 0px; */
  min-height: 600px;
}

/* Widget box styles */
/* Widget box styles */
.widget-box {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Widget title styles */
.widget-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Iframe styling */
.iframe-widget {
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 400px;
  background-color: #f4f4f4;
}

/* Responsive adjustments for Bootstrap grid */
@media (max-width: 768px) {
  .iframe-widget {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .iframe-widget {
    height: 300px;
  }
}

/* copy trading */

/* General Styling */

.copy-trading-info {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 800px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

/* Steps List Styling */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-icon {
  font-size: 1.5rem;
  color: #2b99ff;
}

.step-content {
  flex: 1;
  font-size: 1rem;
  color: #555;
}

.step-content strong {
  display: block;
  color: #222;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .step-item,
  .responsive-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-icon {
    align-self: flex-start;
  }
}

.w-fitcontent {
  width: fit-content;
}
