.hdnews-wrapper {
  padding: 80px 20px;
  position: relative;
}
.hdnews-bg-white {
  background: #ffffff;
}
.hdnews-bg-gradient {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf7 100%);
}
.hdnews-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hdnews-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.hdnews-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hdnews-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 35px;
}
.hdnews-btn-wrapper {
  display: flex;
  justify-content: center;
}
.hdnews-submit-btn {
  display: inline-block;
  padding: 16px 50px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  font-family: inherit;
}
.hdnews-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: #ffffff;
}
@media (max-width: 768px) {
  .hdnews-wrapper {
    padding: 60px 15px;
  }
  
  .hdnews-submit-btn {
    padding: 16px 40px;
  }
}