/* -----------------------------
   GLOBAL STYLES
----------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #333;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #007acc;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  transition: top 0.3s;
  z-index: 100;
}

.skip-link:focus {
  top: 10px;
}

/* -----------------------------
   HEADER
----------------------------- */
header {
  background-color: #00AEEF;
  padding: 10px 5%;
  color: white;
}

/* Flex container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo .tagline {
  font-size: 18px;
  font-weight: 300;
}

/* RIGHT SIDE */
.trust-name {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}
/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .trust-name {
    font-size: 18px;
  }

  .logo .tagline {
    font-size: 16px;
  }
}
/* -----------------------------
   SECTIONS
----------------------------- */
.legal, .policy, .privacy, .note {
  max-width: 900px;
  margin: 25px auto;
  padding: 0 20px;
}

.legal__title, .policy__title, .privacy__title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.legal__heading, h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #000;
}

p {
  margin: 10px 0;
  text-align: justify;
}

ul {
  margin: 10px 0 10px 25px;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.section-divider {
  height: 1px;
  background: #ddd;
  margin: 25px 0;
}

/* -----------------------------
   NOTE SECTION
----------------------------- */
.note__title {
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
}

/* -----------------------------
   FOOTER
----------------------------- */
.footer {
  text-align: center;
  padding: 20px;
  background: #f7f7f7;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer__link {
  color: #007acc;
}

/* -----------------------------
   RESPONSIVE DESIGN
----------------------------- */
@media (max-width: 768px) {
  .header__logo span {
    font-size: 16px;
  }

  .legal, .policy, .privacy, .note {
    padding: 0 15px;
  }

  .legal__title, .policy__title, .privacy__title {
    font-size: 26px;
  }
}
/* ==============================
   Accordion Styles
   ============================== */
  .container h1 {
      font-size: 30px;
      margin-bottom: 15px;
      color: #000;
    }

    .container p {
      margin-bottom: 15px;
      text-align: justify;
    }

    .divider {
      border-bottom: 1px solid #ddd;
      margin: 30px 0;
    }

    /* Accordion Styles */

    ul {
      margin-left: 25px;
    }

    .link {
      color: #0077cc;
      text-decoration: none;
    }

    .link:hover {
      text-decoration: underline;
    }

    .back-top {
      margin-top: 40px;
    }

 .accordion {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 0px 250px; /* Desktop spacing */
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  background: #f9f9f9;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  word-wrap: break-word;
}

.accordion-header::after {
  content: '▾';
  position: absolute;
  right: 20px;
  font-size: 14px;
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 15px 20px;
  background: #fff;
}

.accordion-content p,
.accordion-content ul {
  margin-bottom: 10px;
}

/* ✅ Responsive for tablets */
@media (max-width: 1024px) {
  .accordion {
    margin: 0 80px;
  }
}

/* ✅ Responsive for mobile */
@media (max-width: 600px) {
  .accordion {
    margin: 0 15px;
  }

  .accordion-header {
    font-size: 15px;
    padding: 12px;
  }

  .accordion-content {
    padding: 12px;
  }
}

 

    /* Contact Section */
.contact-section {
  margin: 60px 150px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.contact-section h3 {
  font-size: 18px;
  font-weight: bold;
}

.contact-section a {
  color: #0066cc;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

.unicef-footer {
  background-color: #00AEEF;
  color: #fff;
  padding: 5px 5%;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-left img {
  height: 30px;
  width: auto;
}

.footer-left span {
  font-size: 20px;
  font-weight: 300;
}

.footer-center p {
  text-align: center;
  margin: 5px 0;
  font-size: 13px;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-right a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right {
    justify-content: center;
  }
}


