h1 {
  font-size: 1em;
}
body {
  overflow-x: hidden;
}
.about-section-header {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url(../images/about-us-page-images/Team-pictures/about-us-page-header-img.webp);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
}
.about-section-header p {
  font-size: 20px;
  text-align: center;
  line-height: 30px;
}
.mission-section {
  padding: 20px 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 20px;
}
.mission-section h2 {
  font-family: var(--accent-text);
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--accent-color);
}
.mission-section p {
  font-family: var(--secondary-text);
  line-height: 24px;
  font-size: 17px;
}
.mission-section img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.bulletin-cards-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 14px;
  justify-content: center;
}
.bulletin-card {
  background: var(--accent-color);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 22px 18px;
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.bulletin-card::before {
  content: "";
  display: block;
  width: 32px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 12px;
  left: 18px;
  opacity: 0.25;
}
.bulletin-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.bulletin-card p {
  font-size: 0.98rem;
  margin: 0;
}
.bulletin-icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.bulletin-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.bulletin-card:hover {
  box-shadow: 0 4px 24px rgba(255, 85, 0, 0.15);
  transform: translateY(-4px) scale(1.03);
}
.about-section {
  display: flex;
  margin: 60px auto;
  border-radius: 12px;
  min-height: 400px;
}

/* Left side (Text) */
.about-left {
  flex: 2; /* wider column */
  background: rgb(35, 35, 35); /* Orange background */
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px 0 0 20px;
}

.about-left h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.9;
  color: var(--accent-color);
}

.about-left h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-left p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: white;
}

/* Right side (Image background + Button) */
.about-right {
  flex: 1; /* narrower column */
  position: relative;
  background: url("/images/about-us-page-images/Team-pictures/join-us.jpg")
    no-repeat left center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
}

.about-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* dark overlay for contrast */
  border-radius: 0 20px 20px 0;
}

.about-right button {
  position: relative; /* sits above overlay */
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 1;
}

.about-right button:hover {
  background: #e26b1f;
}

.about-us-section-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
.about-us-section-images .images img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.487);
}
.about-us-section-images .images:nth-child(odd) {
  rotate: -5deg;
}
.about-us-section-images .images:nth-child(even) {
  rotate: 5deg;
}
@media (max-width: 900px) {
  body {
    padding-top: 0;
  }

  .mission-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .mission-section-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 30px;
    order: 1;
  }
  .mission-section img {
    display: none;
  }
  .about-us-section-images {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about-us-section-images .images {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .about-us-section-images .images img {
    max-width: 100%;
  }

  .mission-section .mission-section-text {
    align-items: center;
    justify-content: center;
    order: 0;
  }
  .bulletin-cards-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .bulletin-card {
    align-items: center;
    width: 100%;
    min-width: 170px;
    max-width: 320px;
    height: 100%;
    text-align: center;
  }
  .bulletin-card::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-section {
    margin: 20px auto;
    flex-direction: column;
    min-height: max-content;
    width: 100%;
    padding: 0;
  }
  .about-left,
  .about-right {
    flex: 1 1 100%;
    border-radius: 0;
  }
  .about-right {
    min-height: 250px;
  }
  .about-right::after {
    border-radius: 0;
  }
}
@media (max-width: 1200px) {
  .mission-section {
    padding: 20px 40px;
    grid-template-columns: repeat(1, 1fr);
  }
  .mission-section-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 30px;
    order: 0;
  }
  .mission-section img {
    display: none;
  }
  .about-us-section-images {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
