body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #000;
  background-color: #fff;
}

header .logo {
  height: 50px;
  margin: 1rem 0;
}

/* HERO SECTION — full width soft background */
.about-hero {
  background-color: #fff8ea;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 1rem;
  box-sizing: border-box;
}

.about-hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-content {
  flex: 1 1 300px;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* MISSION + DONATE SECTIONS */
.mission,
.donate {
  background: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.mission h2,
.donate h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission p,
.donate p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.donate-btn {
  background-color: #ffc170;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.donate-btn:hover {
  background-color: #e5a640;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background-color: #f5f5f5;
}

/* ABOUT PAGE BANNER IMAGE */
.about-header {
  background: url('../img/about-header.jpg') no-repeat center center !important;
  background-size: cover;
  padding: 6rem 2rem;
  color: white;
  text-align: center;
  position: relative;
}

.about-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.about-header .container {
  position: relative;
  z-index: 1;
}

/* SECTIONS LIKE "WHY WE EXIST" AND "SUPPORT TASKNECTAR" */
.about-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-section .about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.about-section .about-content .text {
  flex: 1 1 50%;
}

.about-section .about-content .image {
  flex: 1 1 40%;
  text-align: center;
}

.about-section .about-content .image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-section .about-content.reverse {
  flex-direction: row-reverse;
}

.about-image img[alt="Support TaskNectar"] {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* FULL-WIDTH COLORED SECTION WRAPPER */
.about-section.bg-soft {
  background-color: #fff8ea;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 0;
  box-sizing: border-box;
}

.about-section.bg-soft .about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section.bg-soft .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.support-us img{
        max-width: 47%;
    height: auto;
    border-radius: 10px;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .about-section .about-content,
  .about-section .about-content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-section .about-content .text,
  .about-section .about-content .image {
    flex: 1 1 100%;
  }
  .copyright {
    margin-bottom: 7% !important;
}
}
