/* =================================
   SHARED COMPONENTS
================================= */

.dashboard-preview {
  max-width: 1100px;
  margin: 40px auto;
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sql-preview {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
}

.sql-preview h3 {
  margin-bottom: 30px;
}

.sql-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.sql-images img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefits-list {
  display: grid;
  gap: 14px;
  max-width: 750px;
  margin: 0 auto;
}

.benefit-item {
  width: 100%;
  padding: 16px 18px;

  background: #fff;

  border: 1px solid #ddd;
  border-left: 5px solid red;
  border-radius: 10px;

  text-align: center;

  font-size: 1rem;
  line-height: 1.5;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* FAQ CARDS */

.faq-item {
  max-width: 900px;

  margin: 0 auto 22px;

  padding: 28px 28px;

  background: #fff;

  border: 1px solid #e5e5e5;
  border-left: 6px solid red;

  border-radius: 14px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);

  text-align: left;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 14px;

  color: #111;

  font-size: 1.2rem;
  line-height: 1.45;
}

.faq-item p {
  margin: 0;

  color: #333;

  font-size: 1rem;
  line-height: 1.7;
}
