


.sqb-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.sqb-container {
  max-width: 1200px;
  margin: 40px auto;
}

.sqb-title {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  color: #111;
}

.sqb-subtitle {
  text-align: center;
  color: #555;
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sqb-header {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

/* Cards */
.sqb-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sqb-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sqb-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sqb-body {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Metrics */
.sqb-label {
  font-size: 14px;
  color: #777;
}

.sqb-value {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
}

.sqb-unit {
  font-size: 14px;
  color: #888;
}

/* Small stats */
.sqb-grid-small {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.sqb-small-card {
  background: white;
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.sqb-value-small {
  font-size: 22px;
  font-weight: 600;
  margin-top: 5px;
}

/* Info box */
.sqb-info-box {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Timeline */
.timeline {
  border-left: 3px solid #d0d4da;
  padding-left: 20px;
}

.timeline-item {
  margin-bottom: 15px;
  padding-left: 10px;
}

.timeline-item span {
  font-weight: bold;
  color: #1a73e8;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 3.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
