@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/public/fonts/cairo-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/public/fonts/cairo-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/public/fonts/roboto-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Lalezar";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/public/fonts/lalezar-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/public/fonts/dosis-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/public/fonts/dosis-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/public/fonts/dosis-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/public/fonts/montserrat-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/public/fonts/montserrat-latin-700.woff2") format("woff2");
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #1b2a4a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", Arial, sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

a {
  color: #1a73e8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  padding: 1.25rem 1rem 2rem;
  flex: 0 1 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.container h1 {
  margin-bottom: 0.5rem;
}
.container h2 {
  margin-top: 2.5rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .container {
    margin: 2rem auto;
    padding: 2rem 2.5rem 3rem;
  }
}

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #fff;
  border-bottom: 3px solid #1a73e8;
  gap: 0.5rem;
}
header .header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
header .header-left img {
  height: 36px;
  width: auto;
}
header .header-left .site-title {
  font-family: "Cairo", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
header .header-left .site-title:hover {
  color: #1a73e8;
  text-decoration: none;
}
header nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header nav a {
  color: #555;
  font-size: 0.85rem;
}
header nav a:hover {
  color: #1a73e8;
  text-decoration: none;
}
@media (min-width: 640px) {
  header {
    padding: 1rem 2rem;
  }
  header .header-left {
    gap: 1.25rem;
  }
  header .header-left img {
    height: 48px;
  }
  header .header-left .site-title {
    font-size: 1.35rem;
  }
  header nav {
    gap: 1.25rem;
  }
  header nav a {
    font-size: 0.9rem;
  }
}

footer {
  text-align: center;
  background-color: #002a5c;
  border-top: 2px solid #000;
  padding: 15px;
  width: 100%;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin-top: auto;
}
footer div {
  padding: 10px 0;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer img {
  width: 150px;
}
footer .footer-contact p {
  margin: 0;
}
footer .footer-legal a {
  margin: 0 0.25rem;
}
footer .footer-legal p {
  margin: 0.5rem 0 0;
}
@media screen and (min-width: 940px) {
  footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    flex: 0 1 auto;
    text-align: left;
    align-items: center;
  }
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.article-list li {
  border-bottom: 1px solid #eee;
}
.article-list li:last-child {
  border-bottom: none;
}
.article-list li a {
  display: block;
  padding: 1rem 0.75rem;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.article-list li a:hover {
  background-color: #f5f7fa;
  text-decoration: none;
}
.article-list li a strong {
  font-size: 1.1rem;
  color: #1a73e8;
}
.article-list li a p {
  margin: 0.25rem 0 0;
  color: #666;
}

article h1 {
  font-size: 2rem;
}
article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}
article img.img-sm {
  max-width: 200px;
}
article img.img-md {
  max-width: 300px;
}
article img.img-lg {
  max-width: 500px;
}
article img.img-xl {
  max-width: 700px;
}
article table {
  width: 100%;
  border-collapse: collapse;
}
article table th,
article table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
}
article figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
}
article figure img {
  margin: 0;
}
article figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

.prev-next {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.prev-next .prev-link {
  text-align: left;
}
.prev-next .next-link {
  text-align: right;
  margin-left: auto;
}

.breadcrumb {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb ol {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.breadcrumb li + li::before {
  content: ">";
  margin-right: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) {
  .breadcrumb {
    padding: 0.5rem 2rem;
    font-size: 0.85rem;
  }
}

.contact-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0.25rem 0 0;
}
.contact-bar .divider {
  color: #ccc;
}

.guide-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .guide-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafbfc;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: #333;
  text-decoration: none;
}
.guide-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  border-color: #1a73e8;
  text-decoration: none;
}
.guide-card:hover .guide-icon {
  color: #1a73e8;
}
.guide-card .guide-icon {
  width: 36px;
  height: 36px;
  color: #555;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.guide-card strong {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #1a73e8;
}
.guide-card .guide-desc {
  font-size: 0.825rem;
  color: #666;
  line-height: 1.4;
}

.contact-info {
  margin-top: 2.5rem;
  text-align: center;
  color: #666;
}
.contact-info a {
  color: #1a73e8;
}

table.dip-switch-table {
  width: 100%;
  border-collapse: collapse;
}
table.dip-switch-table th {
  background-color: #333;
  color: #fff;
  padding: 0.6rem 0.75rem;
  text-align: left;
}
table.dip-switch-table td {
  padding: 0.6rem 0.75rem;
  border: 1px solid #ddd;
}
table.dip-switch-table tr:nth-child(even) {
  background-color: #f5f5f5;
}
/*# sourceMappingURL=support.min.css.map */
