@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary-green: #0b3b24;
  /* Deep Maxim88 Green */
  --light-green: #145938;
  --primary-gold: #c59b4e;
  /* Brand Gold */
  --light-gold: #e2be79;
  --dark-gold: #a67c33;
  --bg-color: #f6f8f7;
  /* Very light cool grey */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --white: #ffffff;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --transition-speed: 0.3s;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

/* Header */
.site-header {
  background-color: var(--primary-green);
  padding: 10px 0; /* Reduced from 20px */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo h1 {
  color: var(--primary-gold);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  padding: 30px 0 80px; /* Reduced top padding from 60px to 30px */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.hero-banner {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Alternative Links */
.alt-links-wrapper {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.alt-title {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alt-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
}

.btn-alt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, var(--primary-gold), var(--light-gold));
  color: var(--primary-green) !important;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 50px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 6px 15px rgba(197, 155, 78, 0.3);
  text-transform: uppercase;
}

.btn-alt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 155, 78, 0.5);
  background: linear-gradient(to right, var(--light-gold), var(--primary-gold));
  color: #000 !important;
  text-decoration: none;
}

/* Standby Notice */
.standby-notice {
  background-color: rgba(20, 89, 56, 0.8);
  border: 1px solid var(--primary-gold);
  border-radius: var(--border-radius);
  padding: 25px 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.standby-notice h4 {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.standby-notice p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.standby-notice strong {
  color: var(--white);
  font-weight: 700;
}

/* Main Content & Cards */
.main-content {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 60px;
}

.main-heading {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--primary-green), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-heading {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 500;
}

.card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 40px;
  border-top: 5px solid var(--primary-gold);
}

.card h2 {
  color: var(--primary-green);
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.card h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-gold);
  border-radius: 2px;
}

.card h3 {
  font-size: 22px;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 600;
}

/* Guide Images */
.guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 10px 0 25px 0;
  display: block;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
}

/* Steps Flow */
.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fdfbf7;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f2eade;
}

.step-number {
  background-color: var(--primary-gold);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Simple List */
.simple-list {
  list-style: none;
  margin-bottom: 25px;
}

.simple-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.simple-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 18px;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 30px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.data-table th,
.data-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.data-table th {
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.data-table tbody tr:nth-child(even) {
  background-color: #fcfdfe;
}

.data-table tbody tr:hover {
  background-color: #f0f7f4;
}

/* Tip Box */
.tip-box {
  background-color: rgba(197, 155, 78, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
  display: inline-block;
}

.tip-box strong {
  color: var(--dark-gold);
}

/* Grid layout for App Guide */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.app-guide {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 8px;
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--primary-green);
  color: var(--white);
  border-top: none;
}

.faq-section h2 {
  color: var(--primary-gold);
  margin-bottom: 40px;
}

.faq-section h2::after {
  content: none;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  /* remove default arrow */
  position: relative;
  transition: background var(--transition-speed);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary-gold);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-content {
  padding: 0 25px 25px;
  color: rgba(255, 255, 255, 0.8);
}

.faq-content p {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
}

/* CTA */
.cta-section {
  padding: 60px 0 20px;
}

.cta-text {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--primary-gold);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(11, 59, 36, 0.2);
  transition: all var(--transition-speed) ease;
  border: 2px solid var(--primary-gold);
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: var(--primary-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(197, 155, 78, 0.4);
}

/* Footer */
.site-footer {
  background-color: #082919;
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 0;
  font-size: 14px;
}


/* Responsive Design */
@media (max-width: 900px) {
  .hero-title {
    font-size: 32px;
  }

  .grid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 30px 20px;
  }

  .main-heading {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .card h2 {
    font-size: 22px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .step-number {
    margin: 0 auto;
  }
}