body{
	background: #CBEBF5;
}

.dlt-description{
	padding: 100px 0 20px;
}

.dlt-description p{
	background-color: #fff;
	padding: 10px;
	border-radius: 10px;
}

.dlt-description a {
  word-break: break-all;
    display: flex;
    justify-content: center;
    margin: 15px 0;
    font-weight: 600;
    align-items: center;
    text-decoration: none;
}

.steps-section {
  padding: 60px 15px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.steps-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #003366;
}

.step-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: scale(1.02);
}

.step h3 {
  font-size: 20px;
  color: #000276;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.step img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: block;
  margin: 20px auto 0;
}

.dlt-link{
	background-color: #000276;
    color: #fff;
	animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
