    /* GLOBAL */
* {
  margin: 0px;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  background: #ffffff;
  color: #222;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #cccccc;
}
a {
  text-decoration: none;
}

/* CONTAINER */

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

header {
  background: #003354;
  padding: 12px 0;
}

.header-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.logo {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.logo span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 3px;
  opacity: 0.95;
  text-align: center;
}

/* CONTENT */

.content {
  padding: 15px;
}

.content-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 5px;
}

.content-box h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
  line-height: 1.3;
}

.content-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
  text-align: center;
  line-height: 1.4;
}

.content-box p {
  font-size: 17px;
  color: #555;
  text-align: justify;
  margin-bottom: 10px;
}

/* TABLE */

.table-responsive {
  width: 100%;
}

.office2021-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.office2021-table th {
  background: #AB2E00;
  color: #ffffff;
  padding: 16px;
  text-align: center;
  font-size: 18px;
}

.office2021-table td {
  padding: 15px;
  border: 1px solid #dddddd;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.office2021-table tr:nth-child(even) {
  background: #f7f7f7;
}

.office2021-table tr:hover {
  background: #f1e3dc;
  transition: 0.3s;
}
/* STEPS */

.steps {
  margin-top: 10px;
  padding-left: 22px;
}

.steps li {
  margin-bottom: 10px;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}
.download-note {
  background: #fff8e5;
  border-left: 5px solid #AB2E00;
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
}

.download-note p {
  margin-bottom: 15px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.download-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #003354;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.download-btn:hover {
  background: #AB2E00;
}
.copy-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  padding: 7px;
  border-radius: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.copy-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 16px;
  background: #ffffff;
}

.copy-btn {
  background: #003354;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.copy-btn:hover {
  background: #AB2E00;
}
.official-note-box {
  background: linear-gradient(135deg, #fff7f0, #ffe8d9);
  border: 1px solid #ffcfb3;
  padding: 18px 20px;
  margin: 25px 0;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 4px 15px rgba(171,46,0,0.08);
}

.official-note-box::before {
  content: "💡";
  position: absolute;
  top: -14px;
  left: 18px;
  background: #AB2E00;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.official-note-box p {
  margin: 0;
  color: #5a3928;
  font-size: 16px;
  line-height: 1.8;
  padding-top: 8px;
}
/* FOOTER */

footer {
  background: #111;
  color: #ccc;
  padding: 20px 0 20px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  margin-bottom: 35px;
}

.footer-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 600;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 1px;
  display: inline-block;
}

.footer-links a {
  display: block;
  color: #ccc;
  margin-bottom: 5px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

  .content {
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .content-box {
    padding: 2px;
    border-radius: 10px;
  }

  .logo {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }

  .content-box h1 {
    font-size: 22px;
  }

  .content-box h2 {
    font-size: 20px;
  }

  .content-box p {
    font-size: 15px;
    text-align: justify;
  }

  .office2021-table th,
  .office2021-table td {
    font-size: 15px;
    padding: 5px;
  }

  .steps li {
    font-size: 15px;
  }
}

/* 404 PAGE */

.error-page {
  text-align: center;
}

.error-code {
  font-size: 120px;
  color: #AB2E00;
  margin-bottom: 10px;
  line-height: 1;
}

.home-btn {
  display: inline-block;
  margin-top: 20px;
  background: #003354;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  transition: 0.3s;
}

.home-btn:hover {
  background: #AB2E00;
}

@media (max-width: 768px) {

  .error-code {
    font-size: 80px;
  }

}
.important-links-box {
  margin: 30px 0;
}

.important-links-title {
  background: linear-gradient(135deg, #dfefff, #edf5ff);
  color: #003354;
  text-align: center;
  padding: 14px;
  font-size: 28px;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.important-links-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.important-links-table th {
  background: #f7ebe4;
  color: #111;
  padding: 18px;
  font-size: 18px;
  border-bottom: 2px solid #f0c8b2;
}

.important-links-table td {
  padding: 18px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
  font-size: 16px;
}

.important-links-table tr:last-child td {
  border-bottom: none;
}

.important-links-table a {
  color: #d35400;
  font-weight: 500;
}

.important-links-table a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .important-links-title {
    font-size: 22px;
  }

  .important-links-table th,
  .important-links-table td {
    padding: 12px;
    font-size: 14px;
  }

}
.faq-accordion {
  margin-bottom: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #f8fbff, #edf5ff);
  color: #003354;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  background: #e8f1ff;
}

.faq-answer {
  display: none;
  padding: 18px 20px;
  border-top: 1px solid #eeeeee;
}

.faq-answer p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {

  .faq-question {
    font-size: 16px;
    padding: 16px;
  }

  .faq-answer {
    padding: 16px;
  }

}