/* ========================================
   Terms of Use Page Styles
   ======================================== */

/* Page background */
.terms-page {
  background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(248, 250, 252, 1) 100%);
  min-height: 100vh;
}

/* Hero Banner (shared layout in main.css) */
.hero-banner--terms {
  --hero-banner-bg: linear-gradient(135deg, rgba(89, 22, 139, 1) 0%, rgba(130, 0, 219, 1) 50%, rgba(198, 0, 92, 1) 100%);
}

/* Welcome Section */
.terms-welcome {
  background: #FFFFFF;
  padding: 48px 32px 0;
  max-width: 900px;
  margin: 0 auto;
}

.terms-welcome__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: #0F172B;
  margin: 0 0 24px 0;
}

.terms-welcome__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: #314158;
  margin: 0;
}

.terms-welcome__text a {
  color: #009689;
  text-decoration: none;
  transition: color 0.2s ease;
}

.terms-welcome__text a:hover {
  color: #33B5A8;
  text-decoration: none;
}

/* Content card icon colors for terms page */
.content-card__icon--purple {
  background: linear-gradient(135deg, rgba(152, 16, 250, 1) 0%, rgba(130, 0, 219, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(221, 214, 255, 1), 0px 10px 15px -3px rgba(221, 214, 255, 1);
}

.content-card__icon--teal {
  background: linear-gradient(135deg, rgba(0, 187, 167, 1) 0%, rgba(0, 184, 219, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(150, 247, 228, 1), 0px 10px 15px -3px rgba(150, 247, 228, 1);
}

.content-card__icon--orange {
  background: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgba(254, 154, 0, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(255, 214, 167, 1), 0px 10px 15px -3px rgba(255, 214, 167, 1);
}

.content-card__icon--green {
  background: linear-gradient(135deg, rgba(0, 187, 167, 1) 0%, rgba(0, 201, 80, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(150, 247, 228, 1), 0px 10px 15px -3px rgba(150, 247, 228, 1);
}

.content-card__icon--blue {
  background: linear-gradient(135deg, rgba(0, 166, 244, 1) 0%, rgba(0, 146, 184, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(167, 243, 255, 1), 0px 10px 15px -3px rgba(167, 243, 255, 1);
}

.content-card__icon--lime {
  background: linear-gradient(135deg, rgba(154, 230, 0, 1) 0%, rgba(0, 201, 80, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(216, 249, 153, 1), 0px 10px 15px -3px rgba(216, 249, 153, 1);
}

/* Questions Section */
.terms-questions {
  padding: 64px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.terms-questions__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  padding: 49px;
  text-align: center;
}

.terms-questions__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 187, 167, 1) 0%, rgba(0, 184, 219, 1) 100%);
  box-shadow: 0px 4px 6px -4px rgba(150, 247, 228, 1), 0px 10px 15px -3px rgba(150, 247, 228, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.terms-questions__icon svg {
  width: 32px;
  height: 32px;
}

.terms-questions__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.11;
  color: #0F172B;
  margin: 0 0 20px 0;
}

.terms-questions__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: #45556C;
  margin: 0 0 32px 0;
}

.terms-questions__email-box {
  background: #F0FDFA;
  border: 1px solid #96F7E4;
  border-radius: 14px;
  padding: 21px 32px;
  margin-bottom: 32px;
  display: inline-block;
}

.terms-questions__email {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.43;
  color: #45556C;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-welcome__title {
    font-size: 32px;
  }

  .terms-questions__card {
    padding: 24px;
  }

  .terms-questions__title {
    font-size: 28px;
  }

  .terms-questions__email-box {
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .terms-questions__email {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

