/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --bg: #0d0f14;
  --bg2: #13161d;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text: #e8e4dc;
  --text-muted: #8a8680;
  --border: rgba(201, 169, 110, 0.15);
  --section-num: rgba(201, 169, 110, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --radius: 12px;
  --max-width: 860px;
}

/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #081a34;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =====================
   HEADER
   ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #061428;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo>img{
  width: 100px;
  height: 100px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.header-tag {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98d9fa;
  border: 1px solid #98d9fa;
  padding: 5px 12px;
  border-radius: 20px;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  padding: 80px 24px 70px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201, 169, 110, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: #98d9fa;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 18px;
  color: white;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

/* =====================
   DIVIDER LINE
   ===================== */
.main {
  flex: 1;
  padding-bottom: 60px;
}

/* =====================
   CONTAINER
   ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   POLICY SECTIONS
   ===================== */
.policy-section {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.5s ease both;
}

.policy-section:last-child {
  border-bottom: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: #98d9fa;
  letter-spacing: 0.1em;
  padding-top: 6px;
  opacity: 0.7;
}

.section-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  color: #98d9fa;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-body p {
  font-size: 17px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.85;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.section-body strong {
  color: var(--text);
  font-weight: 500;
}

/* =====================
   LISTS
   ===================== */
.section-body ul {
  list-style: none;
  margin: 12px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-body ul li {
  font-size: 17px;
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgb(201 169 110 / 17%);
  border: 1px solid var(--border);
  border-radius: 8px;
  line-height: 1.5;
}

.section-body ul li::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* =====================
   INFO BOX
   ===================== */
.info-box {
  display: flex;
  gap: 14px;
  background: rgb(133 109 65 / 25%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 16px;
}

.info-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  font-style: normal;
}

.info-box p {
  font-size: 16px;
  color: #cbcbcb;
  margin: 0 !important;
}

/* =====================
   CONTACT EMAIL
   ===================== */
.contact-email {
  display: inline-block;
  margin-top: 12px;
  color: #98d9fa;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid #98d9fa8e;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: #98cbfa;
  border-color: #98cbfa;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background:#061428;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;

}

.footer-details {
  font-size: 16px;
  color: #b9b9b9;
  display: flex;
  align-items: center;
 
  flex-wrap: wrap;
  justify-content: center;
}

.dot {
  color: var(--gold);
  opacity: 0.5;
}

.footer-copy {
  font-size: 16px;
  color: #b9b9b9;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 600px) {
  .header-inner {
    padding: 14px 16px;
  }

  .header-tag {
    font-size: 12px;
    padding: 4px 10px;
  }

  .hero {
    padding: 56px 16px 50px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 32px 0;
  }

  .section-num {
    font-size: 11px;
  }

  .section-body ul li {
    font-size: 13px;
  }

  .footer-details {
    flex-direction: column;
    gap: 4px;
  }

  .dot {
    display: none;
  }
}

@media (max-width: 400px) {
  .logo-text {
    font-size: 18px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .section-body p {
    font-size: 16px;
  }
}