html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Maven Pro', sans-serif;
}

/* remove the focus from all input fields.*/
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.termsAndConditions {
  z-index: 1;
  border-radius: 3px;
  position: relative;
  background-color: rgb(255,255,255);
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2rem;
  display: block;
  transition: all 0.2s ease-out;
  backface-visibility: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.termsAndConditionsHeading{
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 32px;
}
.termsParagraphIntro{
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.spangleWelcome{
  font-weight: 500;
}
.serviceLeadingSection{
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto;
}
.sn{
  font-size: 32px;
  padding-right: 5px;
}
.st{
  font-size: 32px;
}
.spl{
  margin-top: 15px;
  margin-bottom: 15px;

}
.serviceInfoContainer{
  position:relative;
  width: 100%;    
}
.serviceLead{
  font-weight: 700;
  margin-left: 15px;  
  margin-top: 15px;
  margin-block-end: 5px;  

}
.serviceDetails{
  margin-left: 15px;
}

.displayNone{
  display:none;
}
.secionLine{
  height: 40px;
  width:5px;

  position:absolute;
  top:7px;
}
/*Font Colours below*/
.lightGreen{
  color: rgb(85, 189, 134);
}
.blue{
  color: #2998ff;
}
.orange{
  color: #ff7730;
}
.purple{
  color: #2a0073
}

/*Set the colours for the lines*/

.lineColorGreen{
  background-image: linear-gradient(to right bottom, rgb(85, 189, 134), rgb(11, 103, 92));
}
.lineColorBlue{
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.lineColorOrange{
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.lineColorPurple{
  background-image: linear-gradient(to bottom right, #b25f88, #2a0073)
}
.closeTerms{
  border-bottom: 1px solid black;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.fadeIn{
  animation-name: fadeIn;
  animation-duration: .8s;
  animation-timing-function: ease-out;
  z-index: 1;
}

@keyframes fadeIn{
  0% {
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* Typography */
.termsAndConditions h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
  font-weight: 700;
}

.termsAndConditions h2 {
  font-size: 1.5rem;
  color: #000;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.termsAndConditions p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #333;
}

.termsAndConditions ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.termsAndConditions li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  color: #333;
}

.termsAndConditions a {
  color: #2998ff;
  text-decoration: none;
}

.termsAndConditions a:hover {
  text-decoration: underline;
}

.termsAndConditions footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .termsAndConditions {
    padding: 1rem;
  }
  
  .termsAndConditions h1 {
    font-size: 1.5rem;
  }
  
  .termsAndConditions h2 {
    font-size: 1.2rem;
  }
  
  .termsAndConditions p,
  .termsAndConditions li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (min-width: 769px) {
  .termsAndConditions {
    padding: 3rem 2rem;
  }
}