/* Unique Styles for Promise Section */
.promise-section {
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.promise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.promise-left {
  flex: 1 1 45%;
  text-align: center;
}

.promise-left img {
  max-width: 100%;
  border-radius: 10px;
}

.promise-note {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.promise-warning {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.promise-right {
  flex: 1 1 45%;
  padding: 20px;
}

.promise-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #212121;
}

.highlight {
  color: #007bff;
}

.promise-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.promise-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-step {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 12px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.promise-icon {
  width: 40px;
  height: 40px;
  background: #007bff;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.promise-text {
  font-size: 16px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .promise-container {
    flex-direction: column;
    text-align: left;
  }

  .promise-left, .promise-right {
    flex: 1 1 100%;
  }

  .promise-right {
    padding: 30px 0;
  }


.promise-icon {
  width: 40px;
  height: 40px;
  background: #007bff;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

}
