.special-box {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}
.special-box .header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.special-box .logo {
  width: 64px;
  height: 64px;
  background-color: #e60012;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.special-box .title-group h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.special-box .title-group p {
  font-size: 24px;
  color: #555;
  font-weight: 400;
  margin: 0;
}
.special-box .main-text {
  width: 100%;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}
.special-box .download-txt {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .special-box .main-text {
    font-size: 28px;
  }
  .special-box .title-group h1 {
    font-size: 24px;
  }
  .special-box .title-group p {
    font-size: 16px;
  }
}
