@charset "utf-8";
/* CSS Document */

/* Cleaned CSS for Text Information Blocks */
.dsc-info-section {
  width: 100%;
  padding: 10px 0;
  background-color: #f9fbfd; /* Soft neutral background */
  font-family: inherit; /* Respects your fixed website font */
  box-sizing: border-box;
}

.dsc-info-section *, .dsc-info-section *::before, .dsc-info-section *::after {
  box-sizing: inherit;
}

.dsc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  font-family: inherit;
}

/* Two column side-by-side grid layout */
.dsc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dsc-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.trust-badge {
  display: inline-block;
  background-color: #e6f4ea;
  color: #137333;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
}

.dsc-card h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1a202c;
  font-size: 24px;
}

.dsc-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 10px;
}

.class3-highlight {
  background-color: #f7fafc;
  border-left: 4px solid #3182ce; /* Left blue accent border */
  padding: 10px;
  margin-top: 10px;
  border-radius: 0 8px 8px 0;
  color: #2d3748;
  line-height: 1.5;
}

/* Switches to a single column list stack on tablet and mobile displays */
@media (max-width: 992px) {
  .dsc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

