*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #1a1a2e;
  background-color: #f8f9fc;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.tc-header {
  background: linear-gradient(135deg, #0d1b2a, #658bd1, #162447);
  padding: 48px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tc-header:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(76, 175, 80, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.tc-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784, #4caf50);
}
.tc-header__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tc-header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.tc-header__title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.tc-header__effective {
  font-size: 0.8125rem;
  color: #ffffff8c;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.tc-main {
  flex: 1;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.tc-preamble {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}
.tc-preamble p {
  margin-bottom: 16px;
}
.tc-preamble p:last-child {
  margin-bottom: 0;
}
.tc-highlight {
  color: #1a1a2e;
  font-weight: 600;
}
.tc-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.tc-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.tc-clauses {
  counter-reset: clause;
}
.tc-clause {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eef0f4;
  box-shadow: 0 1px 3px #0000000a;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.tc-clause:hover {
  box-shadow: 0 2px 8px #0000000f;
  border-color: #dde1e8;
}
.tc-clause__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0d1b2a, #1b2d4f);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.tc-clause__text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
}
.tc-clause__text p {
  margin-bottom: 12px;
}
.tc-clause__text p:last-child {
  margin-bottom: 0;
}
.tc-clause__sub-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.tc-clause__sub-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}
.tc-clause__sub-list li:before {
  content: attr(data-marker);
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #1a1a2e;
}
.tc-contact {
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 12px;
  border: 1px solid #bbf7d0;
  text-align: center;
}
.tc-contact__title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.tc-contact__text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}
.tc-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tc-contact__email:hover {
  color: #15803d;
}
.tc-footer {
  padding: 24px 20px;
  text-align: center;
  background: #0d1b2a;
  color: #ffffff80;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}
.tc-footer span {
  color: #ffffffb3;
  font-weight: 600;
}
@media (min-width: 640px) {
  .tc-header {
    padding: 64px 32px 52px;
  }
  .tc-header__title {
    font-size: 2.25rem;
  }
  .tc-header__logo-img {
    height: 48px;
  }
  .tc-main {
    padding: 48px 32px 80px;
  }
  .tc-preamble {
    font-size: 1rem;
  }
  .tc-clause {
    padding: 24px 28px;
  }
  .tc-clause__text {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .tc-header {
    padding: 80px 40px 64px;
  }
  .tc-header__title {
    font-size: 2.5rem;
  }
  .tc-main {
    padding: 56px 40px 96px;
  }
}
.tc-clause {
  animation: fadeInUp 0.35s ease both;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.am-section {
  margin-bottom: 40px;
}
.am-section__title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e5e7eb;
}
.am-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}
.am-clause__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.am-clause__sublabel {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.am-sub-section {
  margin-top: 16px;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #4caf50;
}
.am-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.am-bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}
.am-bullet-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
}
@media (min-width: 640px) {
  .am-section__title {
    font-size: 1.5rem;
  }
  .am-clause__label,
  .am-bullet-list li {
    font-size: 1rem;
  }
}
