.converter-form {
    width: 100%;
    max-width: 768px;
    margin: 120px auto 0;
    background: linear-gradient(140deg, #ffdee9 0, #b5fffc 100%);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Make the full page background transparent */
body {
  margin: 0;
  background: transparent !important; /* Full page background transparent */
}

/* Ensure the output section has the gradient background you want */
.output-section {
  width: 90%;
  max-width: 768px;
  margin: 30px auto;
  background: linear-gradient(90deg, hsla(208, 33%, 21%, 1) 0%, hsla(211, 36%, 46%, 1) 100%); /* Gradient background */
  border-radius: 8px;
  padding: 20px;
  animation: fadeIn 0.6s ease-out;
  display: none;  /* Initially hide the output section */
}

/* Info box styling with gradient background */
.info-box {
  width: 90%;
  max-width: 768px;
  margin: 25px auto;
  background: linear-gradient(140deg, #ffdee9 0, #b5fffc 100%); /* Gradient background */
  padding: 20px;
  border-radius: 8px;
}

/* Keep the parent containers transparent */
.container, .entry-content, .inside-article, .main-content, .site-content {
  background: transparent !important; /* Make these areas transparent */
}

/* Other necessary output section styles (like font styling, copy buttons, etc.) */
.font-style {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  animation: slideIn 0.4s ease-out;
}

.font-text {
  font-size: 22px;
  color: white;
  text-align: left;
  flex-grow: 1;
  margin-right: 15px;
  word-break: break-word;
}

.copy-btn {
  background: linear-gradient(to right, #fe7a36, #ff9a44);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
}

.copy-btn:hover {
  transform: translateY(-2px);
}

/* Keep animations for fading in and sliding in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Rest of your info box styles */
.info-box h3 {
  color: #280274;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-box p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-item {
  padding: 10px 0;
}

.rank-math-question {
  cursor: pointer;
  margin: 0;
  color: #280274;
  font-size: 1.2rem;
  font-weight: 700;
}

.rank-math-question::before {
  content: "+ ";
  font-size: 1.2rem;
  color: #fe7a36;
  margin-right: 5px;
}

.rank-math-answer {
  display: none;
  padding-top: 5px;
  color: #000;
  font-size: 1rem;
  border-bottom: 1px solid #fe7a36;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

@keyframes move {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
