* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}
.header {
  background: #779c76;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  height: 90px; /* Increased navbar height */
  align-items: center;
}

.navbar {
  background: #779c76;
  padding: 0;
  width: 100%;
}

.navbar {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0 2vw;
  height: 80px;
  position: relative; /* Add this */
}

.navbar li {
  margin: 0 1vw;
  display: flex;
  align-items: center;
}

.navbar a {
  color: #111;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  padding: 0.5em 1em;
  border-radius: 2em;
  transition: background 0.2s, color 0.2s;
}

.navbar a:hover {
  background: #222;
  color: #fff;
}

.navbar .logo {
  position: absolute; /* Add this */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none; /* Prevent flex from affecting it */
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
}

.navbar li:first-child,
.navbar li:nth-child(2),
.navbar li:nth-child(3) {
  justify-content: flex-start;
}

.navbar li:last-child {
  margin-left: auto;
  justify-content: flex-end;
}

.navbar .logo img {
  height: 90px; /* Bigger logo */
  width: auto;
  display: block;
  margin: 0 6px;
  border-radius: 50%;
  background: none;
  padding: 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #779c76;
  width: 100%;
  min-height: 700px;
}

.hero-image {
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hero-texts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
}

.hero-left,
.hero-right {
  flex: 1 1 0;
}

.hero-left {
  display: flex;
  align-items: flex-start;
}

.hero-left h2 {
  font-size: 2em;
  color: #000000;
  margin: 0;
  text-align: left;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.hero-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero-right p {
  font-size: 1.1em;
  color: #000000;
  margin: 0;
  text-align: left;
  max-width: 100%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.about-section {
  background: #779c76;
  padding: 60px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin-bottom: 48px;
  gap: 40px;
}

.about-title-left {
  flex: 1 1 0;
}

.about-title-left h2 {
  font-size: 2em;
  color: #000000;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.about-title-right {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.about-title-right p {
  font-size: 1.1em;
  color: #222;
  margin: 0;
  text-align: left;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.about-content-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  gap: 32px;
}

.about-content-card {
  background: #779c76;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 32px 24px;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  text-align: left;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.about-content-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.03);
  background: #fff;
}

.about-content-card h3 {
  margin-bottom: 16px;
  color: #000000;
  font-size: 1.2em;
}

.about-content-card p {
  color: #000000;
  font-size: 1em;
  margin: 0;
}

.about-icon {
  font-size: 2.2em;
  color: #000;
  margin-bottom: 18px;
  display: inline-block;
}

.culture-layout-section {
  background: #779c76;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.culture-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
}

.culture-layout-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.culture-layout-upper h2 {
  font-size: 1.7em;
  color: #000000;
  margin-bottom: 16px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.culture-layout-upper p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 32px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.culture-layout-lower {
  display: flex;
  gap: 32px;
}

.culture-lower-left,
.culture-lower-right {
  flex: 1 1 0;
  background: #779c76;
  border-radius: 10px;
  padding: 24px 18px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.culture-lower-left:hover,
.culture-lower-right:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.03);
  background: #fff;
}

.culture-layout-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-layout-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.empower-section {
  background: #779c76;
  padding: 60px 0 60px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empower-upper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empower-tag {
  display: inline-block;
  /* background: #779c76; */
  color: #000;
  font-weight: 700;
  font-size: 1em;
  padding: 4px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.empower-upper h2 {
  font-size: 2em;
  color: #000;
  margin-bottom: 12px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-align: left;
}

.empower-upper p {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-align: left;
}

.empower-lower {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}

.empower-card {
  background: #779c76;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 0 0 24px 0;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.empower-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.03);
  background: #fff;
}

.empower-img {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  /* border-radius: 12px 12px 0 0; */
  margin-bottom: 18px;
  margin-top: 10px;
}

.empower-card-text {
  padding: 0 18px;
  text-align: center;
}

.empower-card-text h3 {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 10px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.empower-card-text p {
  color: #000;
  font-size: 1em;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.festivals-section {
  background: #779c76;
  padding: 60px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.festivals-events {
  width: 90%;
  max-width: 1200px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.festivals-tag {
  display: inline-block;
  background: #779c76;
  color: #000;
  font-weight: 700;
  font-size: 1em;
  padding: 4px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.festivals-events p {
  font-size: 1.1em;
  color: #000;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  text-align: left;
}

.festivals-list {
  width: 90%;
  max-width: 1200px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}

.festival-card {
  background: #779c76;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 32px 24px;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}

.festival-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.03);
  background: #fff;
}

.festival-time {
  font-size: 0.95em;
  color: #000;
  background: #779c76;
  border-radius: 12px;
  padding: 3px 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.festival-card h3 {
  margin-bottom: 10px;
  color: #000;
  font-size: 1.15em;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.festival-card p {
  color: #000;
  font-size: 1em;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 340px;
  background: url("Background1.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.45); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2em;
  margin-bottom: 18px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.15em;
  margin-bottom: 32px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1em;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
}

.cta-btn:hover {
  background: #fff;
  color: #779c76;
  border-color: #779c76;
}

.footer-section {
  background: #779c76;
  color: #000;
  padding: 48px 0 0 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 32px auto;
  gap: 32px;
}

.footer-logo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  height: 100px;
  width: auto;
  padding: 4px;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08em;
  transition: color 0.2s, background 0.2s;
  padding: 6px 14px;
  border-radius: 6px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.subscribe-form {
  display: flex;
  background: transparent;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.subscribe-form input[type="email"] {
  padding: 12px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px 0 0 24px;
  outline: none;
  font-size: 1em;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  width: 200px;
  color: #000;
}

.subscribe-form input[type="email"]::placeholder {
  color: #444;
  opacity: 1;
}

.subscribe-form button {
  padding: 12px 24px;
  border: none;
  border-radius: 0 24px 24px 0;
  background: #000;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.subscribe-form button:hover {
  background: #fff;
  color: #779c76;
}

.footer-address,
.footer-contact {
  font-size: 1.15em;
  color: #111;
  margin-bottom: 12px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.footer-contact a {
  color: #222;
  text-decoration: underline;
  margin-right: 8px;
}

.footer-socials {
  margin-top: 12px;
  display: flex;
  gap: 22px;
}

.footer-socials a {
  color: #111;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #222;
}

.footer-bottom {
  text-align: center;
  padding: 18px 0 8px 0;
  font-size: 1.1em;
  color: #222;
  background: none;
}

/* Cultural Insights Hero Section */
.cultural-insights-hero {
  background: #779c76;
  padding: 48px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cultural-hero-texts {
  width: 90%;
  max-width: 1200px;
  text-align: left;
  margin-bottom: 28px;
}

.cultural-hero-texts h1 {
  font-size: 2.3em;
  color: #000;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  font-weight: 700;
}

.cultural-hero-image {
  width: 90%;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .cultural-insights-hero {
    padding: 32px 0 18px 0;
  }
  .cultural-hero-texts h1 {
    font-size: 1.3em;
  }
  .cultural-hero-image {
    max-width: 100vw;
    width: 100vw;
  }
}

/* Improve responsiveness for all main sections and cards */
@media (max-width: 1024px) {
  .navbar,
  .hero-texts,
  .hero-image,
  .about-title-row,
  .about-content-row,
  .featured-cards,
  .culture-layout-row,
  .empower-upper,
  .empower-lower,
  .festivals-list,
  .footer-content,
  .footer-bottom {
    max-width: 98vw;
    width: 98vw;
  }
}

@media (max-width: 900px) {
  .navbar {
    width: 98vw;
    max-width: 98vw;
  }
  .navbar ul {
    gap: 8px;
    padding: 8px 0;
  }
  .navbar a {
    font-size: 0.98em;
    padding: 5px 6px;
  }
  .navbar .logo img {
    height: 40px;
  }
  .about-content-row,
  .featured-cards,
  .culture-layout-row,
  .empower-lower,
  .festivals-list,
  .caveat-links-columns {
    flex-direction: column !important;
    gap: 28px !important;
    align-items: stretch !important;
  }
  .about-content-card,
  .featured-cards > .card,
  .culture-layout-left,
  .culture-layout-right,
  .empower-card,
  .festival-card {
    max-width: 100% !important;
    width: 100% !important;
  }
  .culture-layout-row {
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .navbar {
    width: 100vw;
    max-width: 100vw;
  }
  .navbar ul {
    gap: 6px;
    padding: 6px 0;
  }
  .navbar a {
    font-size: 0.95em;
    padding: 4px 4px;
  }
  .navbar .logo img {
    height: 32px;
  }
  .hero-section,
  .about-section,
  .featured-section,
  .culture-layout-section,
  .empower-section,
  .festivals-section,
  .footer-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .hero-image,
  .cta-content,
  .footer-logo {
    max-width: 100vw !important;
    width: 100vw !important;
  }
  .subscribe-form input[type="email"] {
    width: 110px;
    font-size: 0.95em;
  }
  .subscribe-form button {
    padding: 10px 14px;
    font-size: 0.95em;
  }
  .footer-logo {
    height: 38px;
  }
  .cta-content h2 {
    font-size: 1.3em;
  }
  .cta-content p {
    font-size: 1em;
  }
}

/* Ensure images and cards are always responsive */
img,
.hero-image,
.culture-layout-image,
.empower-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.festival-cta-section {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  background: #779c76;
  overflow: hidden;
}

.festival-cta-overlay {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival-cta-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  filter: brightness(0.65);
  display: block;
}

.festival-cta-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 2;
}

.festival-cta-tag {
  background: #b8860b;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  padding: 6px 22px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 1px;
  display: inline-block;
}

.festival-cta-content h2 {
  font-size: 2em;
  margin-bottom: 14px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
}

.festival-cta-content p {
  font-size: 1.1em;
  color: #fff;
  max-width: 700px;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .festival-cta-content {
    padding: 28px 4vw;
  }
  .festival-cta-content h2 {
    font-size: 1.3em;
  }
  .festival-cta-content p {
    font-size: 1em;
  }
  .festival-cta-image {
    max-height: 220px;
  }
}

.festival-description-section {
  background: #779c76;
  padding: 56px 0 40px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.festival-description-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  width: 90%;
  max-width: 1200px;
  flex-wrap: wrap;
}

.festival-description-text {
  flex: 2 1 340px;
  min-width: 280px;
}

.festival-description-text h2 {
  font-size: 2em;
  color: #000;
  margin-bottom: 18px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.festival-description-text p {
  color: #222;
  font-size: 1.1em;
  margin-bottom: 18px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.festival-description-text h3 {
  font-size: 1.1em;
  color: #000;
  margin-bottom: 10px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.festival-highlights {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.festival-highlights li {
  margin-bottom: 14px;
  font-size: 1em;
  color: #222;
}

.festival-description-image {
  flex: 1 1 340px;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.festival-description-image img {
  width: 100%;
  max-width: 540px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

@media (max-width: 900px) {
  .festival-description-content {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .festival-description-image {
    justify-content: flex-start;
  }
}

.aboutushero-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.aboutushero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.aboutushero-content {
  color: #fff;
  margin-left: 5vw;
  max-width: 700px;
}

.aboutushero-tag {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.aboutushero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.aboutushero-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.aboutushero-btn {
  background: #fff;
  color: #222;
  padding: 0.8rem 2rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.aboutushero-btn:hover {
  background: #f5c542;
  color: #222;
}
/* Responsive styles */
@media (max-width: 900px) {
  .aboutushero-title {
    font-size: 2.2rem;
  }
  .aboutushero-content {
    margin-left: 3vw;
    max-width: 90vw;
  }
}

@media (max-width: 600px) {
  .aboutushero-section {
    height: 40vh;
    min-height: 250px;
  }
  .aboutushero-title {
    font-size: 1.4rem;
  }
  .aboutushero-description {
    font-size: 1rem;
  }
  .aboutushero-content {
    margin-left: 5vw;
    padding-right: 5vw;
  }
}

.aboutus-mission-section {
  background: #779c76;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.aboutus-mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.aboutus-mission-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  line-height: 1.15;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.aboutus-mission-content p {
  font-size: 1.35rem;
  color: #222;
  line-height: 1.4;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .aboutus-mission-content h2 {
    font-size: 2rem;
  }
  .aboutus-mission-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .aboutus-mission-section {
    min-height: 180px;
    padding: 32px 0;
  }
  .aboutus-mission-content h2 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .aboutus-mission-content p {
    font-size: 1rem;
  }
}

.team-section {
  background: #779c76;
  padding: 64px 0 32px 0;
  width: 100%;
}

.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-tag {
  display: block;
  font-size: 1.15em;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.team-desc {
  font-size: 1.25em;
  color: #222;
  margin-bottom: 0;
}

.team-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}

.team-card {
  background: none;
  border: none;
  text-align: center;
  width: 320px;
  padding: 0;
  margin-bottom: 32px;
}

.team-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  background: #eaeaea;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-card h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.team-role {
  display: block;
  font-size: 1.15em;
  color: #222;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 1.1em;
  color: #222;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}

.team-socials a {
  color: #111;
  transition: color 0.2s;
}

.team-socials a:hover {
  color: #222;
}

@media (max-width: 900px) {
  .team-row {
    gap: 32px;
  }
  .team-card {
    width: 90vw;
    max-width: 340px;
  }
  .team-title {
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 32px 0 16px 0;
  }
  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .team-card {
    width: 98vw;
    max-width: 340px;
  }
}
