  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  
  background: white;
  min-height: 100vh;
 
}

.container {

  margin: 30px 70px;
  padding: clamp(20px, 4vw, 40px);
  background: #ffffff;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 90%;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: clamp(15px, 3vw, 20px);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  word-wrap: break-word;
}

h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 10vw, 80px);
  height: 3px;
  background: linear-gradient(90deg, #4caf50 0%, #66bb6a 100%);
  border-radius: 2px;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #34495e;
  margin: clamp(30px, 5vw, 40px) 0 clamp(20px, 3vw, 25px) 0;
  padding-left: clamp(10px, 2vw, 15px);
  position: relative;
  word-wrap: break-word;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(3px, 0.5vw, 4px);
  height: clamp(20px, 3vw, 24px);
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  border-radius: 2px;
}

#policy-intro {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #5a6c7d;
  margin-bottom: clamp(20px, 3vw, 25px);
  text-align: start;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
}

#policy-bullets {
  margin: clamp(20px, 4vw, 30px) 0;
  padding-left: 0;
  list-style: none;
}

#policy-bullets li {
  background: #f8f9fa;
  margin: clamp(12px, 2vw, 15px) 0;
  padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 25px);
  border-radius: clamp(8px, 1.5vw, 12px);
  border-left: 4px solid #4caf50;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #495057;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  word-wrap: break-word;
  line-height: 1.6;
}

#policy-bullets li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

#policy-bullets li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: -2px;
  top: clamp(15px, 3vw, 20px);
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 1.5vw, 12px);
}

.faq {
  margin-top: clamp(20px, 4vw, 30px);
}

.question {
  cursor: pointer;
  padding: clamp(15px, 3vw, 20px) clamp(18px, 4vw, 25px);
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
  border-radius: clamp(8px, 1.5vw, 12px);
  margin: clamp(12px, 2vw, 15px) 0 0 0;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  word-wrap: break-word;
  line-height: 1.4;
}

.question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.question:hover::before {
  left: 100%;
}

.question:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  float: right;
  transition: transform 0.3s ease;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-left: 10px;
}

.question.active::after {
  transform: rotate(180deg);
}

.answer {
  display: none;
  padding: clamp(18px, 3vw, 25px);
  background: #f8f9fa;
  margin-bottom: 10px;
  border-radius: 0 0 clamp(8px, 1.5vw, 12px) clamp(8px, 1.5vw, 12px);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #495057;
  line-height: 1.7;
  border-left: 4px solid #e9ecef;
  animation: slideDown 0.3s ease;
  word-wrap: break-word;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
    padding-top: clamp(18px, 3vw, 25px);
    padding-bottom: clamp(18px, 3vw, 25px);
  }
}

.admin-link {
  text-align: center;
  margin-top: clamp(30px, 5vw, 40px);
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  color: #6c757d;
}



/* Extra Small Devices (Portrait Phones) */
@media (max-width: 480px) {
  body {
    padding: 5px 0;
  }
  
  .container {
    margin: 0 5px;
    padding: 15px;
    width: calc(100% - 10px);
    border-radius: 8px;
  }
  
  .question {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .question::after {
    float: none;
    margin-left: 0;
    flex-shrink: 0;
  }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    margin: 0 10px;
    width: calc(100% - 20px);
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}





/* Ultra Wide Screens */
@media (min-width: 1920px) {
  .container {
    max-width: 1000px;
    padding: 50px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  #policy-intro {
    font-size: 1.2rem;
  }
  
  #policy-bullets li {
    font-size: 1.15rem;
    padding: 25px 30px;
  }
  
  .question {
    font-size: 1.2rem;
    padding: 25px 30px;
  }
  
  .answer {
    font-size: 1.15rem;
    padding: 30px;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
  body {
    padding: 5px 0;
  }
  
  .container {
    padding: 15px 20px;
  }
  
  h1 {
    margin-bottom: 10px;
  }
  
  h2 {
    margin: 20px 0 15px 0;
  }
  
  #policy-intro {
    margin-bottom: 15px;
  }
  
  #policy-bullets li {
    margin: 8px 0;
    padding: 12px 18px;
  }
  
  .question {
    margin: 8px 0 0 0;
    padding: 12px 18px;
  }
  
  .answer {
    padding: 15px 18px;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  #policy-bullets li {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }
  
  .question {
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.4);
  }
}



/* Print styles */
@media print {
  body {
    background: white;
    color: black;
    padding: 0;
  }

  .container {
    box-shadow: none;
    border: 1px solid #ddd;
    max-width: none;
    margin: 0;
    padding: 20px;
    width: 100%;
  }

  .question {
    background: #f5f5f5 !important;
    color: black !important;
    page-break-inside: avoid;
  }

  .answer {
    display: block !important;
    background: white !important;
    page-break-inside: avoid;
  }
  
  h1, h2 {
    page-break-after: avoid;
  }
  
  #policy-bullets li {
    page-break-inside: avoid;
  }
}