:root {
  --primary-maroon: #6e000c;
  --primary-color: #6e000c;
  --bg-gray: #f5f5f5;
  --bg-light: #ffffff;
  --text-dark: #1a1c1c;
  --text-light: #ffffff;
  --text-muted: #555555;
  --border-color: rgba(110, 0, 12, 0.3);
  --font-heading: 'Gotham', sans-serif;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 90px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */

.hero-banner {
  background-color: var(--primary-maroon);
  color: var(--text-light);
  padding: 40px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-light);
  transition: opacity 0.2s;
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb img {
  width: 8px;
  height: 12px;
}

.breadcrumb .current {
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

#section-main-content {
  background-color: var(--bg-light);
  padding: 60px 0 90px 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

/* ============================================
   POLICY SECTIONS
   ============================================ */

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin: 0;
  line-height: 1.3;
  border-left: 4px solid var(--primary-maroon);
  padding-left: 20px;
}

.section-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-content p {
  margin: 0 0 16px 0;
}

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

.section-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.sub-heading {
  font-weight: 600;
  color: var(--text-dark);
  margin: 8px 0;
}

/* Policy Lists */
.policy-list {
  margin: 16px 0;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter;
}

.policy-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-maroon);
  font-weight: bold;
  font-size: 18px;
}

.policy-list.numbered {
  counter-reset: numbered-counter;
}

.policy-list.numbered li {
  padding-left: 32px;
  margin-bottom: 12px;
}

.policy-list.numbered li::before {
  counter-increment: numbered-counter;
  content: counter(numbered-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-maroon);
  font-weight: 600;
}

/* ============================================
   CONTACT CARD
   ============================================ */

.contact-card {
  background-color: #fafafa;
  border: 1px solid rgba(110, 0, 12, 0.3);
  border-radius: 0;
  padding: 30px;
  margin: 20px 0;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px 30px;
  align-items: center;
}

.contact-card .contact-item {
  display: contents;
}

.contact-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-maroon);
  font-weight: 600;
}

.contact-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
}

.contact-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  cursor: default;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-banner {
    padding: 30px 0;
  }

  .hero-title {
    font-size: 28px;
  }

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

  #section-main-content {
    padding: 40px 0 60px 0;
  }

  .content-wrapper {
    gap: 30px;
  }

  .intro-text {
    font-size: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-content {
    font-size: 14px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-banner {
    padding: 25px 0;
  }

  .breadcrumb {
    font-size: 11px;
    gap: 10px;
  }

  .hero-title {
    font-size: 24px;
  }

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

  #section-main-content {
    padding: 30px 0 50px 0;
  }

  .content-wrapper {
    gap: 25px;
  }

  .intro-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-content {
    font-size: 13px;
    line-height: 1.7;
  }

  .policy-list {
    margin: 12px 0;
  }

  .policy-list li {
    margin-bottom: 8px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-value {
    font-size: 14px;
  }
}
