/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}


/*--------------------------------------------------------------
# Privacy Page Redesign (.pp-*)
--------------------------------------------------------------*/

/* Hero */
.pp-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a1e38 0%, #0F4C81 55%, #0a6e6e 100%);
  margin-top: -80px;
  text-align: center;
}

.pp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pp-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #5EEAD4;
  backdrop-filter: blur(8px);
}

.pp-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}

.pp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.pp-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pp-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px;
  border-radius: 50px;
}

.pp-hero-meta span i { font-size: 0.78rem; color: #5EEAD4; }

/* Body layout */
.pp-body { background: #F8FAFC; }

/* TOC */
.pp-toc {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}

.pp-toc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 12px;
}

.pp-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-toc ul li a {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748B;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  border-left: 2px solid transparent;
}

.pp-toc ul li a:hover,
.pp-toc ul li a.pp-toc-active {
  background: rgba(15,76,129,0.06);
  color: #0F4C81;
  border-left-color: #0F4C81;
}

/* Sections */
.pp-sections {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-section {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 36px;
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.pp-section:hover {
  box-shadow: 0 8px 32px rgba(15,76,129,0.08);
  border-color: rgba(15,76,129,0.15);
}

.pp-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(15,76,129,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.pp-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.pp-section p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 10px;
}

.pp-section p:last-child { margin-bottom: 0; }

.pp-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-section ul li {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.pp-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
}

.pp-section a {
  color: #0F4C81;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact card */
.pp-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #0F4C81 0%, #00B8A9 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 8px;
}

.pp-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.pp-contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.pp-contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}

.pp-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pp-contact-link:hover {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

/* TOC active highlight via JS */
@media (max-width: 991px) {
  .pp-hero { padding: 140px 0 60px; }
  .pp-section { padding: 24px 22px; }
  .pp-contact-card { flex-direction: column; gap: 14px; padding: 24px 22px; }
}

@media (max-width: 576px) {
  .pp-hero { padding: 120px 0 50px; }
  .pp-hero-meta { gap: 10px; }
  .pp-section-num { font-size: 1.4rem; top: 20px; right: 18px; }
}

/*--------------------------------------------------------------
# Terms & Conditions Page Redesign (.tc-*)
--------------------------------------------------------------*/

/* Hero */
.tc-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a1e38 0%, #0F4C81 55%, #0a6e6e 100%);
  margin-top: -80px;
  text-align: center;
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.tc-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: #5EEAD4;
  backdrop-filter: blur(8px);
}

.tc-hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5EEAD4;
  background: rgba(94,234,212,0.12);
  border: 1px solid rgba(94,234,212,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.tc-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.tc-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.tc-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tc-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px;
  border-radius: 50px;
}

.tc-hero-meta span i { font-size: 0.78rem; color: #5EEAD4; }

/* Body */
.tc-body {
  background: #F8FAFC;
  padding: 60px 0 80px;
}

/* Sidebar */
.tc-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}

.tc-sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 12px;
}

.tc-tab-switcher {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tc-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: transparent;
  color: #64748B;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tc-tab-btn i { font-size: 0.9rem; }

.tc-tab-btn.active,
.tc-tab-btn:hover {
  background: rgba(15,76,129,0.07);
  color: #0F4C81;
  border-color: rgba(15,76,129,0.20);
}

.tc-sidebar-divider {
  height: 1px;
  background: #F1F5F9;
  margin: 16px 0;
}

/* TOC */
.tc-toc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94A3B8;
  margin-bottom: 8px;
}

.tc-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-toc ul li a {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748B;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  border-left: 2px solid transparent;
}

.tc-toc ul li a:hover,
.tc-toc ul li a.tc-toc-active {
  background: rgba(15,76,129,0.06);
  color: #0F4C81;
  border-left-color: #0F4C81;
}

/* Panels */
.tc-panel { display: none; }
.tc-panel.active { display: block; }

/* Section cards */
.tc-sections {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.tc-section {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 32px 36px;
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.tc-section:hover {
  box-shadow: 0 8px 32px rgba(15,76,129,0.08);
  border-color: rgba(15,76,129,0.15);
}

.tc-section-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(15,76,129,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.tc-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.tc-section p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 10px;
}

.tc-section p:last-child { margin-bottom: 0; }

.tc-section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-section ul li {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.tc-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
}

/* Contact card */
.tc-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #0F4C81 0%, #00B8A9 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 4px;
}

.tc-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.tc-contact-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.tc-contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}

.tc-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.tc-contact-link:hover {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .tc-hero { padding: 140px 0 60px; }
  .tc-sidebar { position: static; }
  .tc-tab-switcher { flex-direction: row; }
  .tc-tab-btn { flex: 1; justify-content: center; }
  .tc-section { padding: 24px 22px; }
  .tc-contact-card { flex-direction: column; gap: 14px; padding: 24px 22px; }
}

@media (max-width: 576px) {
  .tc-hero { padding: 120px 0 50px; }
  .tc-hero-meta { gap: 8px; }
  .tc-tab-switcher { flex-direction: column; }
  .tc-section-num { font-size: 1.4rem; top: 20px; right: 18px; }
}
