/* ===== SECTION ===== */
.dr1057documents {
  background: #f9fbff;
  padding: 80px 20px;
}

/* Container */
.dr1057documents-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.dr1057documents h2 {
  font-size: 36px;
  color: #0b5ed7;
  margin-bottom: 10px;
  font-weight: 700;
}

.dr1057documents-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* Grid */
.dr1057documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.dr1057doc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #eef2f7;
}

.dr1057doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.dr1057doc-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Title */
.dr1057doc-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* ===== ACTION BUTTON (SINGLE BUTTON FIX) ===== */
.dr1057doc-actions {
  display: flex;
  justify-content: center;
}

.dr1057doc-actions a {
  display: inline-block;
  background: #0b5ed7;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  transition: 0.3s ease;
  line-height: 1;
}

.dr1057doc-actions a:hover {
  background: #084298;
  color: #ffffff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dr1057documents h2 {
    font-size: 28px;
  }

  .dr1057documents-subtext {
    font-size: 15px;
  }

  .dr1057doc-card {
    padding: 25px 15px;
  }
}