h1 {
      text-align: center;
      margin-top: 20px;
      font-size: 60px;

}
h2 {
 width: 470;
height: 36;
  text-align: center;
  margin-top: 10px;


}
h3 {
  text-align: center;

}

.step-one {
    padding-top: 20px;
    background-color: #FEE2CE;
  margin-top: 30px;
 
}
.step-one img{
  width: 80%;
  text-align: center;
  display: block;        
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid black;
}

.step-two {
  margin-top: 30px;
 
}
.step-two img{
    
  width: 35%;
  text-align: center;
  display: block;        
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid black;
}
.step-three {
    padding-top: 20px;
    background-color: #FEE2CE;
  margin-top: 30px;
 
}
.step-three img{
  width: 35%;
  text-align: center;
  display: block;        
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid black;
}

.step-four {
  margin-top: 30px;
 
}
.step-four img{
  width: 80%;
  text-align: center;
  display: block;        
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;   
  margin-bottom: 20px;
  border: 1px solid black;
}

.image-container {
  display: flex;
  justify-content: center;
}

.image-container img {
  width: 45%;
  border: 1px solid black;
}

/* Read More Button Styling */
.step-one .btn-primary,
.step-two .btn-primary,
.step-three .btn-primary,
.step-four .btn-primary {
  display: block;
  margin: 20px auto;
  text-align: center;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1990;
}

.modal-dialog {
  position: relative;
  width: auto;
  max-width: 600px;
  margin: 20px;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #ffffff;
  color:rgb(254, 82, 1);
}

.modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.modal-close {
  padding: 8px;
  margin: -8px -8px -8px auto;
  background: none;
  border: none;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
  background-color: #ffffff;
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.modal-image-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-overlay-image {
  width: 48% !important;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .modal-overlay-image {
    width: 100% !important;
    margin-bottom: 10px;
  }
}

.modal-body p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

.step-detail-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

.step-detail-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
  font-style: italic;
}

body.modal-open {
  overflow: hidden;
}

/* Blur background content when modal is open */
body.modal-open .hero,
body.modal-open .step-one,
body.modal-open .step-two,
body.modal-open .step-three,
body.modal-open .step-four,
body.modal-open #site-footer {
  filter: blur(3px);
  transition: filter 0.3s ease;
}

/* Remove blur when modal is closed */
.hero,
.step-one,
.step-two,
.step-three,
.step-four,
#site-footer {
  filter: none;
  transition: filter 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 90%;
    margin: 10px;
  }
  
  .modal-body {
    padding: 15px;
  }
}