.dr1service {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Heading */
.dr1service h2 {
  text-align: left; /* left-align the heading */
  color: #0F3460;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  position: relative;
}

/* Decorative line under heading */
.dr1service h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #E94560;
  position: absolute;
  left: 0; /* align with left */
  bottom: -10px;
  border-radius: 2px;
}

/* Intro paragraph */
.dr1service p {
  color: #555;
  line-height: 1.6;
  text-align: left; /* left-align paragraph */
  max-width: 700px;
  margin: 0 0 2rem 0; /* remove auto centering */
  font-size: 1rem;
}

/* Cards Grid */
.dr1service .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Individual Card */
.dr1service .card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left; /* left-align card content */
}

.dr1service .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #E94560, #0F3460);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dr1service .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card Title */
.dr1service .card h3 {
  margin-bottom: 1rem;
  color: #0F3460;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Card Paragraph */
.dr1service .card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 600px) {
  .dr1service h2 {
    font-size: 1.75rem;
  }
  .dr1service .card h3 {
    font-size: 1.1rem;
  }
}