.package-details {
  margin-top: 16px;
  border: 1px solid #e4d8ef;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f2fc;
}

.package-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: #321265;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.package-details summary::-webkit-details-marker { display: none; }

.package-details summary span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #64229a;
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.package-details[open] summary span { transform: rotate(45deg); }

.details-content {
  padding: 0 16px 16px;
  border-top: 1px solid #e9def1;
  color: #5f5864;
  font-size: 13px;
  line-height: 1.62;
}

.details-content strong {
  display: block;
  margin-top: 14px;
  color: #3d3550;
}

.details-content p { margin: 5px 0 0; }

.application-steps {
  padding: 10px 24px 92px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.application-steps h2 {
  color: #2c1467;
  margin: 0 0 30px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  min-height: 210px;
  padding: 30px 24px;
  border: 1px solid #e7ddec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(42, 20, 69, .07);
}

.steps-grid article > b {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7440a8, #3c0a70);
  color: #fff;
  font-size: 19px;
  box-shadow: 0 9px 22px rgba(78, 22, 126, .25);
}

.steps-grid h3 {
  margin: 0 0 8px;
  color: #2d1765;
  font-size: 19px;
}

.steps-grid p {
  margin: 0;
  color: #69636e;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .application-steps { padding: 0 16px 64px; }
  .application-steps h2 { font-size: 30px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 0; }
}
