/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  a {
    text-decoration: none;
    color: inherit;
  }
}

html {
  font-size: 18px;
}

body, .page-flex-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-flex-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.static-main-wrapper {
  flex: 1; /* Push the footer down */
}

body {
  font-family: "Karma", serif;
  background: #02463a;
  color: #FFFFFF;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === CONTAINER === */
.static-main-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 16px;
}

/* === HEADER === */
.static-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 80px;
  background: transparent;
}

.header .brand-mark {
  height: 40px;
  width: auto;
  max-width: 210px;
}

.static-header .brand-mark {
  width: 200px;
  height: 75px; 
}
.static-header .brand-type {
  height: 32px;
  margin-left: 8px;
}

.centered-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 16px;
}
.centered-content .policy-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.left-align {
  text-align: left !important;
}

.centered-content .policy-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.alpha-list.left-align {
  text-align: left;
  padding-left: 0;
}

.alpha-list.left-align li {
  text-align: left;
  margin-bottom: 18px;
  padding-left: 28px; 
  position: relative;
  line-height: 1.7;
}

.alpha-list.left-align > li::before {
  left: 0;
  position: absolute;
  min-width: 32px;
}

.li-content {
  display: block;
  margin-left: 4px;
}

@media (max-width: 900px) {
  .header .brand-mark {
    height: 50px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .header .brand-mark {
    height: 30px;
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .header .brand-mark {
    height: 22px;
    max-width: 90px;
  }
}

@media (max-width: 1110px) {
  .static-header { padding: 10px 25px; }
  .static-header .brand-mark { width: 200px;
    height: 73px;  }
  .static-header .brand-type { height: 19px; }
}

@media (max-width: 768px) {
  .static-header { padding: 10px 25px; }
  .static-header .brand-mark { width: 200px;
    height: 73px;  }
  .static-header .brand-type { height: 19px; }
}
@media (max-width: 480px) {
  .static-header { padding: 8px 18px;}
  .static-header .brand-mark { width: 200px;
    height: 73px;  }
  .static-header .brand-type { height: 14px; }
}

/* === CONTENT === */
.content {
  margin-top: 85px;
  padding: 30px 10%;
  font-size: 2.5rem;
}

.policy-title {
  font-size: 1.8rem;
  color: #FF9432;
  font-weight: 700;
  margin-bottom: 10px;
}
.policy-section-title {
  color: #FF9432;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.policy-container p {
  margin-bottom: 15px;
  text-align: justify;
}
.policy-container strong {
  color: #FF9432;
  font-weight: 700;
  font-size: 1rem;
}

.alpha-list {
  list-style: none;
  counter-reset: alpha;
  margin-left: 40px;
  margin-bottom: 20px;
}
.alpha-list > li {
  counter-increment: alpha;
  position: relative;
  margin-bottom: 10px;
}
.alpha-list > li::before {
  content: "(" counter(alpha, lower-alpha) ") ";
  position: absolute;
  left: -30px;
  color: #FF9432;
  font-weight: bold;
}
.alpha-list li ul {
  list-style: none;
  counter-reset: upper;
  margin-left: 40px;
}
.alpha-list li ul > li {
  content: "(" counter(upper, lower-roman) ") ";
  position: relative;
  margin-bottom: 6px;
}
.alpha-list li ul > li::before {
  content: "(" counter(upper, lower-roman) ") ";
  position: absolute;
  left: -35px;
  color: #FFFFFF;
  font-weight: bold;
}
ul.alpha-list li {
  margin-bottom: 10px;
}

/* === FOOTER === */
.static-footer {
  background: #0D2506;
  color: #FFFFFF;
  padding: 40px 8% 20px;
  position: relative;
  font-family: "Karma", serif;
  font-size: 1.05rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 45px;
}
.footer-logo-type {
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #EFE8FF;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #FF9432;
}

.static-footer-copy {
  font-size: 14px;
  margin-top: 10px;
  color: #EFE8FF;
}

.static-footer-bar {
  background-color: #FF9432;
  height: 6px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .content { padding: 25px 8%; font-size: 3rem; }
  .static-footer { padding: 32px 6% 18px; }
}
@media (max-width: 768px) {
  .content { padding: 20px 6%; font-size: 2.5rem; }
  .policy-title { font-size: 1.4rem; }
  .policy-section-title { font-size: 1rem; }
  .policy-container p,
  .policy-container li { font-size: 0.95rem; }
  .static-footer { padding: 30px 5% 15px; }
  .footer-links { gap: 20px; }
  .footer-logo { height: 38px; }
  .footer-logo-type { height: 20px; }
  .static-footer-copy { font-size: 13px; }
}
@media (max-width: 480px) {
  .content { padding: 15px 5%; font-size: 1.5rem; }
  .policy-title { font-size: 1.2rem; }
  .policy-section-title { font-size: 1rem; }
  .policy-container p,
  .policy-container li { font-size: 0.9rem; }
  .static-footer { padding: 15px 6%; font-size: 14px; }
  .footer-logo { height: 24px; }
  .footer-logo-type { height: 14px;}
  .footer-links { gap: 12px; font-size: 13px;}
}

@media (max-width: 768px) {
  .static-main-wrapper,
  .content,
  .policy-container {
    padding-left: 3% !important;
    padding-right: 3% !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .static-footer { padding-left: 3%; padding-right: 3%; }
}
@media (max-width: 480px) {
  .static-main-wrapper,
  .content,
  .policy-container {
    padding-left: 2.5% !important;
    padding-right: 2.5% !important;
  }
  .static-footer { padding-left: 2.5%; padding-right: 2.5%; }
}
 @media (orientation: landscape) and (max-width: 900px) {
  .content {
    font-size: 1.3rem !important;
  }

  .policy-title {
    font-size: 1.1rem;
  }

  .policy-section-title {
    font-size: 0.95rem;
  }

  .policy-container p,
  .policy-container li,
  .li-content {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-links a {
    font-size: 13px;
  }

  .static-footer-copy {
    font-size: 12px;
  }
}
