/* Container Section Background */
/* Container Section Background */
section.py-5 {
  background: #f4f7fb;
  padding: 60px 0;
}

/* Card Styling */
.card {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Title - Blue */
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 12px;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

/* Description Paragraph - Black */
.card-body p {
  font-size: 0.95rem;
  color: #000; /* Black */
  margin-bottom: 12px;
  line-height: 1.5;
}

/* List Styling - Black */
.card-body ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.card-body ul li {
  font-size: 0.9rem;
  color: #000; /* Black */
  margin-bottom: 6px;
  position: relative;
  padding-left: 10px;
}

/* Bullet Dot - Blue */
.card-body ul li::before {
  content: "•";
  position: absolute;
  left: -10px;
  color: #007bff;
  font-size: 1.2rem;
  top: 0;
}

/* Flex Layout for Cards */
.row.g-4 > [class^="col-"] {
  display: flex;
}

.card.h-100 {
  flex: 1;
}
