@charset "UTF-8";
/* CSS Document */
html, body {
	display: flex;
	flex-direction: column;
	height: 100%;
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	text-align: center;
}


.container {
	width: 100%;
	margin: 50 0px 0px 0px;
	 padding: 0px;
}


section {
	width: 100%;
	max-width: 1400px;
	height: auto;
	margin: auto;
}


.termsandconditions {
	display: block;
	text-align: justify;
	width: 70%;
	margin: auto;
	color: #000000;
}


h3 {
	margin-top: 0px;
	color: #000;
	font-size: xx-large;
}


ul {
	margin: auto;
	text-align: left;
    list-style-type: none;
    padding: 0;
    overflow: hidden;
	color: #FFFFFF;
	background-color: transparent;
}


li {
	width: auto;
	display:inline;
}


p {
	display: inline-block;
}

/* Return Button Styling for Desktop and Mobile */
#return_button button,
#return_button_mobile button{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #b30000; /* darker shade of #f13223 */
  color: white;
  border: none;
  padding: 10px 15px;
  z-index: 999;
  cursor: pointer;
  border: solid thin #ffffff;
  border-radius: 10px;
  opacity: .5;
  transition: all 0.3s ease;
}

#return_button:hover button,
#return_button_mobile:hover button{
  background-color: #e03a2c; /* lighter shade on hover */
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Make arrow icon white */
#return_button button i,
#return_button_mobile button i,
#return_button img,
#return_button_mobile img {
  filter: brightness(0) invert(1); /* turns blue icons white */
}

/* Show/hide logic */
@media (max-width: 600px) {
  #return_button {
    display: none;
  }
  #return_button_mobile {
    display: block;
  }
}

@media (min-width: 601px) {
  #return_button {
    display: block;
  }
  #return_button_mobile {
    display: none;
  }
}