* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background-color: #0e1b2d; /* Dark navy background */
  color: #0e1b2d;
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto; /* Removed extra vertical margin to allow body flex centering */
  padding: 40px;
}

.content-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto; /* Ensure the box is centered if needed */
}

.warning-banner {
  background-color: #fff6f6;
  border: 2px solid #e74c3c;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}

.step {
  padding: 10px 20px;
  font-size: 18px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.active-step {
  font-weight: bold;
  color: #fff;
  background-color: #0e3257;
  padding: 15px 30px;
  border-radius: 8px;
}

.progress-line {
  height: 2px;
  background-color: #ccc;
  position: absolute;
  width: 80%;
  z-index: 1;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.header {
  text-align: left;
  margin-bottom: 30px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #0e1b2d;
  margin-bottom: 20px;
  font-weight: bold;
}

.subtitle {
  font-size: 1.6rem;
  color: #0e1b2d;
  margin-bottom: 40px;
}

.main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.benefits {
  flex: 3;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.check-icon {
  color: #e67128;
  font-size: 24px;
  margin-right: 15px;
  font-weight: bold;
}

.benefit-text {
  font-size: 1.3rem;
  color: #0e1b2d;
  line-height: 1.4;
}

.offer-box {
  flex: 2;
  border: 2px solid #0e1b2d;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  min-width: 300px;
}

.offer-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #e67128;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.guarantee {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.decline-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.3rem;
  color: #0e1b2d;
  text-decoration: none;
}

.decline-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .content-box {
    padding: 25px;
  }
  
  .main-content {
    flex-direction: column;
  }
  
  .offer-box {
    width: 100%;
  }
  
  h1 {
    font-size: 2.3rem;
  }
  
  .subtitle {
    font-size: 1.4rem;
  }
  
  .progress-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .cta-button {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
  
  .offer-title {
    font-size: 1.6rem;
  }
  
  .price {
    font-size: 2rem;
  }
  .offer-box{
      min-width: 100%;
  }
  body{
      padding:0 ;
  }
}
