* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fbf9f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px 60px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.title {
  font-size: 55px;
  font-weight: 700;
  color: #090e34;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number img {
  display: block;
  width: 50px;
  height: 50px;
}

.step-text {
  font-size: 25px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4f75fe;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none;
  padding: 15px 26px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #3d5fd9;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.preview-image {
  width: 884px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.preview-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .title {
    font-size: 36px;
  }
  
  .step-text {
    font-size: 18px;
    white-space: normal;
  }
  
  .step-number img {
    width: 40px;
    height: 40px;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 12px 22px 16px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 28px;
  }
  
  .step-text {
    font-size: 16px;
  }
  
  .step-number img {
    width: 36px;
    height: 36px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 10px 20px 14px;
  }
}
