* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f3f6fb;
  color: #0d2240;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ================= HOME PAGE ================= */
.page {
  min-height: 100vh;
}

/* ================= TOP STRIP ================= */
.top-strip {
  background: #eaf2ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 38px;
  border-bottom: 1px solid #dfe7f5;
  gap: 12px;
}

.brand-badge {
  border: 2px solid #202020;
  padding: 8px 18px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 4px;
  background: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-box {
  padding: 6px 14px;
  border: 2px solid #243b71;
  border-radius: 4px;
  background: #ffe67d;
  color: #25408f;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.logo-box span {
  font-size: 10px;
  font-weight: 700;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.round-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c94c, #2f80ed);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(47,128,237,0.25);
}

.nav-left h3 {
  font-size: 16px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #0d2240;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #2b6ef3;
}

.login-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3db7ff, #1679c4);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px rgba(22,121,196,0.35);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: #2b6ef3;
  color: #fff;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1;
}

/* ================= HERO ================= */
.hero-strip {
  background: linear-gradient(180deg, #ffffff, #f6f8fd);
  padding: 18px 30px 10px;
}

.hero-banner {
  width: 100%;
  text-align: center;
}

.hero-banner img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* old flag classes, harmless if unused */
.flag-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.flag {
  text-align: center;
  font-size: 72px;
  line-height: 1;
}

/* ================= CARDS ================= */
.cards-section {
  padding: 10px 36px 24px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  min-height: 170px;
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.card.yellow {
  background: #ffe891;
}

.card.blue {
  background: #4057a4;
  color: #fff;
}

.card h4 {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
  max-width: 90%;
}

.card .action-wrap {
  display: flex;
  justify-content: flex-end;
}

.outline-btn {
  display: inline-block;
  background: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s;
}

.outline-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ================= PARTNERS / FOOTER ================= */
.partners {
  background: #edf3ff;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  color: #35518f;
  font-weight: 700;
  font-size: 14px;
  border-top: 1px solid #d8e3fa;
}

.footer-links {
  background: #3953a4;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

/* ================= FORM PAGE ================= */
.simple-topbar {
  background: #fff;
  padding: 12px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e9f2;
}

.dept-btn,
.home-btn {
  border: 1.5px solid #9cc0ff;
  color: #17325c;
  background: #edf5ff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
}

.home-btn {
  background: #fff;
  color: #2563eb;
  display: inline-block;
}

.form-page-wrap {
  padding: 36px 0 42px;
  background: linear-gradient(180deg, #f5f7fc, #eef3fb);
  min-height: calc(100vh - 60px);
}

.page-title {
  text-align: center;
  margin-bottom: 18px;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 800;
  color: #12284a;
}

.page-title p {
  color: #53627d;
  font-size: 15px;
  margin-top: 4px;
}

.form-card {
  width: min(98%, 1580px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dde5f2;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(28,55,90,0.08);
  padding: 38px 40px;
}

.form-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #162b4d;
}

.required-note {
  color: #66758d;
  margin-bottom: 18px;
  font-size: 14px;
}

.required-note span {
  color: #e74c3c;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-weight: 600;
  font-size: 15px;
  color: #20365c;
}

.field label span {
  color: #e74c3c;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d5deeb;
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 15px;
  color: #24354f;
  outline: none;
  background: #fff;
}

.field textarea {
  resize: none;
  min-height: 60px;
}

.btn-align {
  display: flex;
  justify-content: end;
}

.payment-btn {
  width: 100%;
  background: linear-gradient(90deg, #2d77f2, #246ae6);
  color: #fff;
  border-radius: 14px;
  padding: 15px 18px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-top: auto;
}

/* ================= PAYMENT PAGE ================= */
.payment-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 12px 40px;
  background: #f3f6fc;
}

.payment-wrapper {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.payment-wrapper h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.payment-card {
  background: #fff;
  border: 1px solid #dfe6f2;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 14px;
  text-align: left;
}

.payment-header {
  border-bottom: 1px solid #eef2f7;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.payment-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.payment-header p {
  font-size: 10px;
  color: #6c7890;
  margin-top: 2px;
}

.bill-box {
  border: 1px solid #dbe3f1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 11px;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid #edf1f7;
}

.bill-row:last-child {
  border-bottom: none;
}

.amount {
  color: #2563eb;
  font-weight: 700;
}

.qr-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.qr-box {
  width: 120px;
  height: 165px;
  border: 2px solid #2563eb;
  border-radius: 10px;
  margin: 0 auto 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.fake-upi {
  font-size: 11px;
  font-weight: 700;
  color: #222;
}

.qr-pattern {
  width: 70px;
  height: 70px;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0/20px 20px,
    linear-gradient(#000 10px, transparent 10px) 0 0/20px 20px,
    linear-gradient(90deg, transparent 10px, #000 10px) 10px 10px/20px 20px,
    linear-gradient(transparent 10px, #000 10px) 10px 10px/20px 20px;
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 1px #ccc;
}

.qr-subtext {
  font-size: 8px;
  color: #6c7890;
  text-align: center;
}

.save-link {
  text-align: center;
  display: block;
  font-size: 9px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 12px;
}

.pay-field {
  margin-bottom: 10px;
}

.pay-field label {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.pay-field input {
  width: 100%;
  border: 1px solid #ccd7e5;
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 11px;
}

.small-note {
  font-size: 9px;
  color: #9099aa;
  margin-bottom: 10px;
}

.submit-order-btn {
  width: 100%;
  background: #1f8f50;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.back-link {
  text-align: center;
  font-size: 11px;
  color: #333;
  cursor: pointer;
}

.success-msg {
  margin-top: 12px;
  text-align: center;
  color: #1f8f50;
  font-weight: 700;
  font-size: 13px;
  display: none;
}

/* ================= INNER PAGES ================= */
.inner-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f4f7fc, #eaf0fa);
  padding: 40px 20px;
}

.inner-top {
  max-width: 1000px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.inner-top h1 {
  font-size: 34px;
  color: #10284a;
  font-weight: 800;
}

.back-home {
  background: #fff;
  color: #2b6ef3;
  border: 1px solid #cfe0ff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.inner-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e3e9f5;
}

.inner-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #142b50;
}

.inner-card p {
  color: #5f6f86;
  margin-bottom: 22px;
}

.inner-form {
  display: grid;
  gap: 18px;
}

.main-btn {
  background: linear-gradient(90deg, #2d77f2, #246ae6);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
}

.red-btn {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* ================= RESPONSIVE ================= */

/* Large tablets / small laptops */
@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .nav-menu {
    gap: 18px;
  }

  .card h4 {
    font-size: 18px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .top-strip {
    padding: 10px 20px;
  }

  .hero-strip {
    padding: 16px 20px 10px;
  }

  .hero-banner img {
    max-height: 220px;
  }

  .cards-section {
    padding: 10px 20px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn-align {
    justify-content: stretch;
  }

  .payment-btn {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    gap: 8px;
  }

  .brand-badge {
    font-size: 13px;
    padding: 8px 10px;
  }

  .logo-box {
    font-size: 11px;
    padding: 7px 10px;
  }

  .logo-box span {
    font-size: 8px;
  }

  .navbar {
    padding: 14px 12px;
    align-items: center;
    gap: 12px;
  }

  .nav-left {
    min-width: auto;
    flex: 1;
  }

  .round-logo {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .nav-left h3 {
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .login-btn {
    display: none;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    background: #fff;
    border-top: 1px solid #e7edf8;
    padding-top: 12px;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    background: #f5f8ff;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
  }

  .hero-strip {
    padding: 12px 16px 10px;
  }

  .hero-banner img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }

  .cards-section {
    padding: 12px 16px 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    min-height: auto;
    padding: 18px;
  }

  .card h4 {
    font-size: 17px;
    max-width: 100%;
  }

  .card .action-wrap {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .outline-btn {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 16px;
  }

  .partners {
    padding: 14px 16px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 13px;
  }

  .footer-links {
    padding: 14px 16px;
    gap: 10px;
    justify-content: flex-start;
    flex-direction: column;
    font-size: 13px;
  }

  .form-page-wrap {
    padding: 24px 12px 30px;
  }

  .page-title h1 {
    font-size: 24px;
  }

  .page-title p {
    font-size: 14px;
  }

  .form-card {
    width: 100%;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .form-card h2 {
    font-size: 20px;
  }

  .field label {
    font-size: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 14px;
    padding: 12px 12px;
    border-radius: 10px;
  }

  .payment-page {
    padding: 14px 10px 30px;
  }

  .payment-wrapper {
    max-width: 100%;
  }

  .payment-wrapper h2 {
    font-size: 22px;
  }

  .payment-card {
    padding: 12px;
  }

  .inner-page {
    padding: 24px 12px;
  }

  .inner-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-top h1 {
    font-size: 24px;
  }

  .back-home {
    font-size: 14px;
    padding: 8px 14px;
  }

  .inner-card {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .inner-card h2 {
    font-size: 20px;
  }

  .inner-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .main-btn {
    width: 100%;
    text-align: center;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .brand-badge {
    font-size: 12px;
    padding: 7px 8px;
  }

  .logo-box {
    font-size: 10px;
    padding: 6px 8px;
  }

  .logo-box span {
    font-size: 7px;
  }

  .nav-left h3 {
    font-size: 14px;
  }

  .nav-menu a {
    font-size: 14px;
    padding: 11px 12px;
  }

  .hero-banner img {
    max-height: 140px;
  }

  .card {
    padding: 16px;
  }

  .card h4 {
    font-size: 16px;
    line-height: 1.4;
  }

  .outline-btn {
    font-size: 15px;
    padding: 11px 14px;
  }

  .partners {
    font-size: 12px;
  }

  .footer-links {
    font-size: 12px;
  }

  .page-title h1 {
    font-size: 22px;
  }

  .form-card h2 {
    font-size: 18px;
  }

  .payment-wrapper h2 {
    font-size: 20px;
  }

  .inner-top h1 {
    font-size: 22px;
  }

  .inner-card h2 {
    font-size: 18px;
  }
}
/* ================= DESKTOP / MOBILE MENU CONTROL ================= */
.desktop-menu {
  display: flex;
}

/* Mobile side menu hidden on desktop */
.mobile-side-menu,
.mobile-menu-overlay {
  display: none;
}

/* ================= MOBILE SIDE DRAWER MENU ================= */
@media (max-width: 768px) {
  .desktop-menu {
    display: none !important;
  }

  .menu-toggle {
    display: block;
    background: transparent;
    color: #1d3772;
    font-size: 34px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
  }

  .navbar {
    padding: 14px 12px;
    align-items: center;
  }

  .login-btn {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    box-shadow: 4px 0 18px rgba(0, 0, 0, 0.18);
    transition: left 0.35s ease;
    padding: 18px 16px 24px;
    overflow-y: auto;
  }

  .mobile-side-menu.active {
    left: 0;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 34px;
  }

  .mobile-menu-logo {
    padding: 10px 16px;
    border: 2px solid #243b71;
    border-radius: 8px;
    background: #ffe67d;
    color: #25408f;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    min-width: 190px;
  }

  .mobile-menu-logo span {
    font-size: 10px;
    font-weight: 700;
  }

  .close-menu-btn {
    background: transparent;
    color: #777;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
    padding: 0;
    margin-top: 4px;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-menu-links a {
    font-size: 20px;
    font-weight: 500;
    color: #041a44;
    text-transform: uppercase;
    line-height: 1.35;
  }

  .mobile-menu-links a:hover {
    color: #2b6ef3;
  }
}
/* ================= QR IMAGE ================= */
.image-qr-box {
  width: 150px;
  height: 180px;
  padding: 8px;
  background: #fff;
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* ================= ORDER POPUP ================= */
.order-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 2000;
}

.order-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.order-popup {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transform: scale(0.8);
  transition: 0.3s ease;
}

.order-popup-overlay.show .order-popup {
  transform: scale(1);
}

.order-popup h3 {
  font-size: 26px;
  color: #17325c;
  margin-bottom: 8px;
}

.order-popup p {
  color: #5f6f86;
  font-size: 14px;
  margin-bottom: 18px;
}

.popup-ok-btn {
  background: linear-gradient(90deg, #2d77f2, #246ae6);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 14px;
}

/* ================= CHECKMARK ANIMATION ================= */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: #fff;
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .line-tip {
  top: 46px;
  left: 14px;
  width: 0;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
  animation-fill-mode: forwards;
}

.success-checkmark .check-icon .line-long {
  top: 38px;
  right: 8px;
  width: 0;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.25);
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #fff;
}

@keyframes rotate-circle {
  0%, 5% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
  }
  100% {
    width: 25px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
  }
  100% {
    width: 47px;
  }
}
/* ================= LEGAL PAGES ================= */
.legal-page h2 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #142b50;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #17325c;
}

.legal-page p {
  color: #4f6079;
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 15px;
}

.policy-list {
  margin: 12px 0 20px 22px;
  color: #4a5b75;
  line-height: 1.8;
}

.policy-list li {
  margin-bottom: 6px;
}

.site-disclaimer {
  background: #fff3cd;
  color: #7a5a00;
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid #ffe08a;
}

@media (max-width: 768px) {
  .legal-page h2 {
    font-size: 22px;
  }

  .legal-page h3 {
    font-size: 18px;
  }

  .legal-page p,
  .policy-list {
    font-size: 14px;
  }
}