/*BACK_TO_HOME*/

.back a {
  border: 1px solid #757575;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Coiny', sans-serif;
  color: black;
}

.back a:hover {
  background-color: #FF6C80;
  color: white;
  transition: ease .3s;
}
.back a i {
  margin-right: 5px; 
}

.back {
  margin-bottom: 20px;

}



.terms-container {
  max-width: 950px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: #333;
}

.terms-header {
  text-align: center;
  margin-bottom: 40px;
}

.terms-header h1 {
  font-size: 30px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 20px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 20px;
  color: #111;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-section h2 i {
  color: #ff4fa3;
}

.terms-section ul {
  margin-left: 20px;
  list-style: none;
  padding: 0;
}

.terms-section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-section ul li i {
  color: #ff4fa3;
  min-width: 18px;
  margin-top: 3px;
}

.terms-section a {
  color: #ff4fa3;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-container {
    margin: 50px 10px;
  }
}