.pdm-wrapper {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Force all cards in one row */
.pdm-cards {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
  flex-wrap: nowrap; /* 🔥 This ensures single row */
}

/* Card base style */
.pdm-card {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  color: #000;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  min-height: 140px;
}

/* Smaller cards for statement & due diligence */
.pdm-small {
  flex: 1 1 25%;
  max-width: 25%;
}

/* Wider Section 32 form card */
.pdm-wide {
  flex: 1 1 50%;
  max-width: 50%;
  background: #fffbee;
  border-color: #f1c40f;
}

/* Headings */
.pdm-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

/* Buttons */
.pdm-btn {
  display: inline-block;
  background: #f1c40f;
  color: #000;
  padding: 7px 14px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.3s;
}

.pdm-btn:hover {
  background: #ffde59;
}

/* Request Section 32 Form */
.pdm-request-card form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pdm-request-card input[type=email] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.pdm-request-card button {
  background: #f1c40f;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.pdm-request-card button:hover {
  background: #ffde59;
}

/* Message below form */
#pdm-message {
  margin-top: 8px;
  font-size: 13px;
  color: green;
}

/* Responsive */
@media (max-width: 768px) {
  .pdm-cards {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .pdm-card {
    max-width: 100%;
    width: 100%;
  }
  .pdm-request-card form {
    flex-direction: column;
  }
  .pdm-request-card button {
    width: 100%;
  }
}
