@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --c-dark: #212529;
  --c-brand: #0d7c6d;
  --c-brand-light: #e28ecc;
  --c-brand-rgb: 78, 87, 212;
  --c-body: #8a8888;
  --font-base: "Roboto";
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.8);
  --transition: all 0.5s ease;
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  color: var(--c-body);
}
a {
  text-decoration: none;
  color: var(--c-brand);
  transition: var(--transition);
}
a:hover {
  color: var(--c-brand-light);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 600px;
}

/* Navbar */
.navbar {
  padding: 0.1rem;
  padding-bottom: 0.1;
}

.navbar-nav .nav-link {
  color: #e8e6e6;
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--c-brand);
}
.navbar-brand img {
  max-height: 60px;
  object-fit: contain;
}

.btn-brand {
  background-color: var(--c-brand);
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-brand:hover {
  background-color: var(--c-brand-light);
  border-color: var(--c-brand-light);
  color: black;
}

.navbar-toggler-icon {
  background-color: white;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .navbar-nav .nav-link,
  .btn-brand {
    margin-bottom: 8px;
    text-align: center;
  }
}
/* Section-title */
.section-title {
  margin-bottom: 60px;
}

/* Footer Styling */
.footer {
  margin: 0;
  padding: 40px 0;
  max-width: 100%;
  flex-shrink: 0;
  background: linear-gradient(#000, #212529);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer h5 {
  color: var(--c-brand);
}

.footer a {
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer p,
.footer .contact-info {
  color: #cccccc;
}
.flex_align_justify {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_align {
  display: flex;
  align-items: center;
}

.wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.terms_service {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 3px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
  overflow: auto;
}
.terms_service p, li {
  font-size: 0.9rem; 
  line-height: 1.5;
}
.terms_service p,
.terms_service ol,
.terms_service li {
  color: var(--c-body);
}

.terms_service .tc_item {
  margin-top: 20px;
  padding: 20px;
  min-height: 100px;
  width: 100%;
}

.terms_service .tc_head {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  height: 90px;
}

.terms_service .tc_head .icon {
  width: 50px;
  height: 50px;
  background: var(--bg-clr);
  margin-right: 20px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--white);
}

.terms_service .tc_body {
  height: calc(100% - 170px);
  overflow: auto;
  padding-right: 20px;
}

.terms_service .tc_body ol .li-item {
  margin-bottom: 15px;
}

.terms_service .tc_body ol .li-item h3 {
  margin-bottom: 10px;
}
.tc_body ol {
  counter-reset: item;
  padding-left: 20px;
}
.tc_body .li-item {
  list-style: none;
  counter-increment: item;
  position: relative;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 35px;
}
.terms_service .tc_head .text p {
  color: var(--c-body);
}
.tc_body .li-item::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-size: 24px;
  font-weight: bold;
  color: var(--c-body);
}

.terms_service .tc_foot {
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.15);
  justify-content: space-between;
  height: 80px;
}

.terms_service .tc_foot button {
  width: 100%;
  border: 1px solid var(--bg-clr);
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.terms_service .tc_foot button.decline_btn {
  margin-right: 20px;
  background: var(--c-brand);
  color: var(--bg-clr);
}

.terms_service .tc_foot button.decline_btn:hover {
  background: var(--bg-clr);
  color: var(--white);
}

.terms_service .tc_foot button.accept_btn:hover {
  background: var(--c-dark);
  color: white;
}
/* Footer Styling */
.footer {
  margin: 0;
  padding: 40px 0;
  max-width: 100%;
  flex-shrink: 0;
  background: linear-gradient(#000, #212529);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer h5 {
  color: var(--c-brand);
}

.footer a {
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer p,
.footer .contact-info {
  color: #cccccc;
}
