/*--------------------------------------------------------------
# About Us Banner Section
--------------------------------------------------------------*/
h5.fw-bold {
  color: #37517e;
  font-family: var(--heading-font);
}

.terms-title{
    color:rgb(255, 255, 255);
    font-family: var(--heading-font);
}

.terms-condition-title {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.terms-condition-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-condition-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.terms-condition-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.terms-condition-title nav a {
  color: var(--default-color);
}

.terms-condition-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.terms-condition-title nav ol li+li {
  padding-left: 10px;
}

.terms-condition-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.terms-condition-container {
    max-width: 100%;
    background: #fff;
    padding: 40px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.contact-link {
    color: inherit; /* Keeps the default text color */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-link:hover {
    color: #007bff; /* Change color on hover (Bootstrap primary color) */
} 