/* Terms Page Styles */
/* Variables */
/* Mixins */
/* Media Query Breakpoints */
/* Page Header - Terms specific styling */
.page-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url("../img/h6.avif");
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/h6.avif");
}

/* Terms Content */
.terms-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.terms-content__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  max-height: calc(100vh - 15rem);
  overflow-y: auto;
}

.terms-content__nav-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #343a40;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.terms-content__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.terms-content__nav-item {
  position: relative;
}

.terms-content__nav-link {
  font-size: 1.5rem;
  color: #6c757d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
}

.terms-content__nav-link:hover, .terms-content__nav-link.active {
  color: #c46e1c;
}

.terms-content__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.terms-content__date {
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.terms-content__intro {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #343a40;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.terms-content__section {
  margin-bottom: 4rem;
}

.terms-content__section:last-child {
  margin-bottom: 0;
}

.terms-content__title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #343a40;
  margin-bottom: 2rem;
}

.terms-content__text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.terms-content__text p:last-child {
  margin-bottom: 0;
}

.terms-content__contact {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}

.terms-content__contact p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 1rem;
}

.terms-content__contact p:last-child {
  margin-bottom: 0;
}

.terms-content__contact a {
  color: #c46e1c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* Media Queries */
@media (max-width: 992px) {
  .terms-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  .terms-content__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: static;
    width: 100%;
    max-height: none;
  }
  .terms-content__nav-list {
    max-height: 200px;
    overflow-y: auto;
  }
}

@media (max-width: 768px) {
  .terms-content__title {
    font-size: 2.2rem;
  }
  .terms-content__intro {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .terms-content__nav {
    padding: 2rem;
  }
  .terms-content__nav-title {
    font-size: 1.8rem;
  }
  .terms-content__title {
    font-size: 2rem;
  }
  .terms-content__text p {
    font-size: 1.5rem;
  }
  .terms-content__contact p {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=terms.css.map */