*{
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #d0d1cea9;
  color: #242627;
  margin: 0;
  padding: 0;
}

.tc-header {
  background: #d0d1cea9;
  padding: 13px 7vw 10px 7vw;
  border-bottom: 1.5px solid #dee7db;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.tc-fa-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.tc-fa-logo .fa-id-card {
  font-size: 2.4em;
  color: orange;
  filter: drop-shadow(0 2px 10px #2dd27b26);
}

.tc-header nav {
  margin-left: auto;
  position: relative;
}
.tc-header nav a {
  color: orange;
  font-size: 1.13rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.tc-header nav a i {
  margin-right: 6px;
}

.tc-container {
  display: flex;
  gap: 24px;
  margin: 36px auto 0 auto;
  max-width: 1100px;
  padding: 0 18px;
}

.tc-sidebar {
  min-width: 210px;
  max-width: 280px;
  width: 24vw;
  box-sizing: border-box;
}
.tc-box {
  background: orange;
  color: #fff;
  border-radius: 11px;
  padding: 8px 13px;
}
.tc-box h3 {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 2px 0 10px 0;
  font-size: 1.13em;
}
.tc-box ol,
.tc-box ul {
  padding-left: 18px;
}
.tc-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.tc-box a:hover {
  color: #242627;
}

.tc-main-content {
  flex: 1;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 5px 18px #c8e8cf2a;
  padding: 32px 28px 28px 28px;
  min-width: 0;
  box-sizing: border-box;
}
.tc-main-content h1 {
  color: orange;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-main-content section {
  margin-bottom: 28px;
}
.tc-main-content h3 {
  color: orange;
  font-size: 1.12rem;
  font-weight: bold;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.tc-main-content ul {
  margin-left: 22px;
}
.tc-main-content ul li {
  margin-bottom: 6px;
}
.tc-main-content a {
  color: orange;
}
.tc-main-content b {
  color: #c28005;
}

.tc-footer-announcement {
  background: linear-gradient(135deg, #ffae64 0%, #ffa646 100%);;
  color: #fff;
  padding: 30px 3vw 16px 3vw;
  text-align: center;
  font-size: 1.1em;
  margin-top: 42px;
}
.tc-announcement-box {
  background: #fff8e3;
  color: #193207;
  border-radius: 15px;
  font-weight: 700;
  padding: 13px 20px 15px 14px;
  margin: 0 auto 18px auto;
  max-width: 380px;
  box-shadow: 0 3px 12px #aeeec415;
  display: inline-block;
}
.tc-announcement-box i {
  color: #ff8a2a;
  margin-right: 6px;
}
.tc-copyright {
  color: #eaffb3;
  font-size: 0.98em;
  padding-top: 8px;
}


#acknow {
  max-width: 100%;
  background: #fff7e0;
  border-radius: 11px;
  box-shadow: 0 5px 18px #c8e8cf2a;
  padding: 32px 28px;
  margin-top: 30px;
  box-sizing: border-box;
  width: 100%;
}

/* Center the heading */
#acknow h3 {
  color: orange;
  font-size: 1.12rem;
  font-weight: bold;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}




.contact-form button {
  background: #ff9500;
  color: #fff;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 13px 13px;
  border: none;
  border-radius: 19px;
  text-align: center;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 3px 14px #fdc98737;
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  transition: background 0.15s, color 0.13s;
}
.contact-form button:hover {
  background: #e08604;
}


.scroll-up-btn{
  all: unset;
  position: fixed;
  bottom: 13px;
  right: 10px;
  height: 25px;
  width: 25px;
  background-color: #08080823;
  border-radius: 99%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-up-btn:hover {
  background: #ff9800;
}

.scroll-up-btn .arrow-up{
  width: 10px;
  height: 10px;
  border-left: 3px solid #f9f9f9;
  border-bottom: 3px solid #f9f9f9;
  transform: rotate(135deg);
  margin-bottom: -5px;
  pointer-events: none;
}







/* Tablet (under 950px): Stack sidebar on top, smaller logo */
@media (max-width: 950px) {
  .tc-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 3vw 7px 3vw;
    gap: 7px;
  }
  .tc-header nav {
    margin-left: 0;
  }
  .tc-container {
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
    max-width: 98vw;
  }
  .tc-sidebar {
    width: 99vw;
    min-width: 0;
    max-width: 99vw;
    margin: 0 auto 17px auto;
    border-radius: 10px;
    font-size: 1.01rem;
  }
  .tc-main-content {
    font-size: 1.03rem;
    padding: 23px 14px;
    border-radius: 10px;
    margin: 0 4px;
  }

  #acknow {
    padding: 24px 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(200, 232, 207, 0.16);
  }
}


@media (max-width: 820px) and (min-width: 768px){
    .tc-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 3vw 7px 3vw;
    gap: 7px;
  }
  .tc-header nav {
    margin-left: 0;
  }
  .tc-container {
    flex-direction: column;
    gap: 0;
    padding: 18px 0;
    max-width: 100vw;
  }
  .tc-sidebar {
    width: 99vw;
    min-width: 0;
    max-width: 99vw;
    margin: 0 auto 17px auto;
    border-radius: 10px;
    font-size: 1.01rem;
  }
  .tc-main-content {
    font-size: 1.03rem;
    padding: 23px 14px;
    border-radius: 10px;
    margin: 0 4px;
  }
}


/* Mobile: Full width, tighter spacing, stack columns */
@media (max-width:600px) {
  .tc-header {
    padding: 10px 2vw 4px 2vw;
    flex-direction: row;
    gap: 7px;
  }
  .tc-fa-logo .fa-box-open {
    font-size: 1.49em;
  }
  .tc-fa-logo {
    margin-right: 7px;
  }
  .tc-header nav a {
    font-size: 1.01rem;
  }
  .tc-container {
    padding: 3vw 0;
    max-width: 100vw;
  }
  .tc-sidebar,
  .tc-main-content {
    width: 99vw;
    min-width: 0;
    padding-left: 3vw;
    padding-right: 3vw;
    box-sizing: border-box;
    border-radius: 7px;
  }
  .tc-sidebar {
    margin-bottom: 14px;
    font-size: 0.97rem;
  }
  .tc-main-content {
    padding: 10px 2vw 15vw 2vw;
    font-size: 0.97rem;
  }
  .tc-main-content h1 {
    font-size: 1.09em;
  }
  .tc-footer-announcement {
    font-size: 1em;
    padding: 18px 2vw 8px 2vw;
    margin-top: 14px;
  }
  .tc-announcement-box {
    font-size: 1em;
    max-width: 92vw;
    padding: 11px;
    border-radius: 12px;
  }

  #acknow {
    padding: 18px 15px;
    margin-top: 18px;
  }

  #acknow h3 {
    font-size: 1rem;
  }
}


@media (max-width: 431px) and (min-width: 350px){
.contact-form button {
    font-size: 0.95rem;
    padding: 12px 11px;
    border-radius: 12px;
  }
}


@media (max-width: 376px) and (min-width: 360px){
.contact-form button {
    font-size: 0.89rem;
    padding: 11px 11px;
  }
}