* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9f9fc;
  color: #333;
  line-height: 1.6;
}

section.step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  background: white;
  margin-bottom: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

section.step.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
}

.text h2 {
  font-size: 28px;
  color: #111;
  margin-bottom: 15px;
}

.text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.icon {
  font-size: 28px;
  color: #4b6ef5;
}

.time h4 {
  font-size: 14px;
  color: #000;
}

.time p {
  font-size: 15px;
  color: #555;
}







.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;              /* White text */
  background-color: #007bff;   /* High-contrast blue */
  border-radius: 6px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn:hover,
.btn:focus {
  background-color: #0056b3;   /* Darker blue on hover/focus */
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5); /* visible focus outline */
  outline: none;
}












.image {
  flex: 1;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
}






.photo-credit {
   overflow: hidden;
}





