* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #333;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}


/* -----------------------------
   HEADER
----------------------------- */
/* 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;
  }
}
/* -----------------------------
   footer
----------------------------- */


.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;
  }
}

/* -----------------------------
   SECTIONS
----------------------------- */
.legal{
  max-width: 900px;
  margin: 25px auto;
  padding: 0 20px;
}

.legal__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;
  font-size: larger;
}

/* ==============================
   Community Outreach Section
   ============================== */
.community {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}



.community__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive for tablets and mobiles */
@media (max-width: 768px) {
  .community {
    padding: 0 15px;
  }

 
}

/* ==============================
   Contact Form 
   ============================== */
.contact-section {
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE INFO */
.contact-info {
  flex: 1 1 55%;
}

.contact-info h2 {
  font-size: 22px;
  color: #003566;
  margin-bottom: 15px;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 15px; */
}

.info-item .icon {
  font-size: 20px;
  margin-right: 12px;
  line-height: 2.2;
}

.info-item p {
  font-size: 15px;
  line-height: 1.5;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  margin-top: 15px;
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 1 1 35%;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  border-radius: 10px;
  padding: 20px 25px;
  display: block; /* changed from flex to block to avoid extra flex height */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  height: auto; /* ensures it only fits the content */
  padding-right: 50px;
  padding-bottom: 020px;
  margin-bottom: 200px;
}

.contact-form h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 18px;
  margin-top: 5px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
  color: #333;
  background: #fff;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.submit-btn {
  width: 100%;
  background: #00ffb7;
  color: #003049;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 5px;
}

.submit-btn:hover {
  background: #90ee90;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    margin-top: 20px;
    padding: 20px;
    height: auto;
  }
}

