.terms-and-conditions {
  font-family: Arial, sans-serif;
  font-size: 0.9em;
  line-height: 1.5em;
  color: #333;
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
 
}

.terms-and-conditions h2 {
  margin-bottom: 0.5em;
  color: #ffdd57;
  border-bottom: 1px solid #545454;
  padding-bottom: 0.3em;
}

.terms-and-conditions div {
  width: 300px;
  height: 250px;
  border: 1px solid #ccc;
  border-radius: 5%;
 
  margin: 1rem auto;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-and-conditions a {
  color: #ffdd57;
  text-decoration: none;
}

.terms-and-conditions a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .terms-and-conditions div {
    width: 90%;
    height: auto;
	
  }
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted rgb(46, 46, 46);
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}