.htwo {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #333;
  text-align: center;
}

.hthree {
  color: #111;
  margin-top: 30px;
}


.steps {
  margin-top: 20px;
  padding-left: 20px;
  line-height: 1.7;
}

.steps li {
  list-style-type: decimal;
  margin-bottom: 10px;
  font-size: 16px;
}

.highlight {
  font-weight: 600;
  color: #222;
}

.content-container {
  max-width: 880px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  font-family: 'Rubik', sans-serif;
  color: #333;
  overflow: hidden;
}

.content-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ff5722;
  border-left: 6px solid #ff5722;
  padding-left: 14px;
  background: linear-gradient(to right, #ff5722 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-container h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #2196f3;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 4px solid #2196f3;
  padding-left: 12px;
}

.content-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0;
  color: #444;
}

.content-container ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.content-container ul li {
  padding-left: 36px;
  margin-bottom: 14px;
  position: relative;
  font-size: 1.02rem;
  color: #555;
}

.content-container ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1rem;
  color: #4caf50;
  background: #e8f5e9;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-container strong {
  color: #000;
  font-weight: 700;
}

@media (max-width: 768px) {
  .content-container {
    padding: 25px;
  }

  .content-container h2 {
    font-size: 1.6rem;
  }

  .content-container h3 {
    font-size: 1.2rem;
  }

  .content-container ul li {
    font-size: 0.95rem;
  }
}

