* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  color: #111;
}

body.loaded {
  overflow: auto;
}

header {
  width: 100%;
  height: 80px;
  padding: 0 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2cb487;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111;
}

.cookie-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999999;
  width: 100%;
  background: #fff;
  border-top: 1px solid #7a005c;
  padding: 20px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: 0.35s ease;
}

.cookie-bar.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-bar p {
  margin: 0;
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
}

.cookie-bar a {
  color: #2cb487;
  font-weight: 800;
  text-decoration: none;
}

.cookie-bar button {
  min-width: 165px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #2cb487;
  background: #fff;
  color: #2cb487;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.cookie-bar button:hover {
  background: #2cb487;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-bar {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-bar button {
    width: 100%;
  }
}
/* LOADING */

.loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: conic-gradient(#47d7a8, #3ccb9b, #2cb487, transparent 70%);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 4px),
    white calc(100% - 4px)
  );
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.terms-hero {
  background: #2cb487;
  padding: 64px 24px 72px;
}

.terms-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.terms-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  margin-bottom: 12px;
  color: #111;
}

.terms-breadcrumb a {
  color: #0057b8;
  text-decoration: underline;
}

.terms-hero h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #111;
  font-weight: 800;
  margin: 0;
}

.terms-content {
  background: #fff;
  padding: 42px 24px 80px;
  color: #111827;
}

.terms-content h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 22px;
}

.terms-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 22px 0 20px;
}

.terms-content p {
  max-width: 1220px;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.terms-index {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.terms-index a {
  color: #111827;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 22px;
}

.terms-index a:hover {
  text-decoration: underline;
}

.terms-block {
  margin-top: 42px;
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 45px 20px 50px;
  }

  .terms-hero h1 {
    font-size: 30px;
  }

  .terms-content {
    padding: 35px 20px 60px;
  }

  .terms-content p,
  .terms-index a {
    font-size: 15px;
  }
}