:root {
  --bg-yellow: #f6f4d2;
  --main-green: #cddfa0;
  --accent-green: #a5be8c;
  --text-color: #4b4b4b;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: var(--bg-yellow);
  color: var(--text-color);
}

header {
  padding: 0;
  background: none;
  border: none;
}

.header-content {
  text-align: left;
  max-width: 300px;
}

.header-content h1 {
  font-size: 2.2em;
  margin: 0;
}

.header-content p {
  margin: 5px 0 0;
  font-size: 1em;
  color: #555;
}

nav {
  background-color: var(--accent-green);
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.menu-item.with-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--accent-green);
  padding: 10px 0;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  flex-direction: column;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #94b97f;
}

.menu-item.with-submenu:hover .submenu {
  display: flex;
}

.about-us-section {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.about-us-heading {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-us-video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.about-us-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.the-team-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: left;
}
.team-members {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.team-member {
  flex: 1;
  text-align: left;
  max-width: 45%;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.board-members {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.board-member {
  flex: 1;
  max-width: 30%;
  text-align: center;
}

.board-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.additional-board-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.board-entry {
  text-align: center;
  font-size: 0.95rem;
  white-space: nowrap;
}

.board-name {
  font-weight: bold;
  display: block;
}

.board-role {
  color: #555;
  font-size: 0.9rem;
}

.ambassadors-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.ambassadors-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 30px;
}

.ambassadors-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ambassador-card {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.ambassador-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.ambassador-info {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.community-champions-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.community-champions-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 15px;
}

.community-champions-intro {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.champions-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.champion-card {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.champion-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.champion-info {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.get-involved-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.get-involved-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-color);
}

.get-involved-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.get-involved-intro p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

.get-involved-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.get-involved-images,
.get-involved-text {
  flex: 1;
  min-width: 300px;
}

.image-slideshow-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-style: italic;
}

.section-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 20px 0 10px;
  color: var(--text-color);
}

.opportunities-list {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 20px;
}

.opportunities-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.get-involved-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gi-slideshow {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-auto-rows: auto;
  gap: 12px;
  justify-content: center;
}

.gi-slide {
  display: block;
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sessions-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.sessions-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 10px;
}

.sessions-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 25px;
}

.sessions-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.sessions-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.sessions-content a {
  color: var(--accent-green);
  text-decoration: underline;
}

.register-volunteer-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

.rv-heading {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--text-color);
}

.rv-subtitle {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.rv-section {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text-color);
}

.rv-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #555;
}

.volunteer-form {
  margin-top: 30px;
}

.volunteer-form table {
  width: 100%;
  border-collapse: collapse;
}

.volunteer-form th,
.volunteer-form td {
  padding: 8px 10px;
  vertical-align: top;
}

.volunteer-form th {
  width: 25%;
  text-align: left;
  font-weight: normal;
  color: #333;
}

.volunteer-form input[type="text"],
.volunteer-form input[type="email"],
.volunteer-form input[type="tel"],
.volunteer-form input[type="file"],
.volunteer-form select,
.volunteer-form textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 0.95rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}

.volunteer-form button {
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.volunteer-form button:hover {
  background-color: #94b97f;
}

.rv-submit-cell {
  text-align: right;
}

.fundraise-section {
  text-align: left;
}
.fundraise-section * {
  text-align: left;
}

.fundraising-form-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.fundraising-form-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.fundraising-form-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.pdf-download img {
  width: 64px;
  height: auto;
  display: block;
}

.other-news-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.other-news-section h2,
.other-news-section .news-category {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.other-news-section .news-list,
.other-news-section .intouch-news-list {
  list-style: disc inside;
  margin-bottom: 2rem;
}

.other-news-section .news-list li,
.other-news-section .intouch-news-list li {
  margin-bottom: 0.75rem;
}

.other-news-section a {
  color: var(--accent-green);
  text-decoration: none;
}

.other-news-section a:hover {
  text-decoration: underline;
}

.news-press-2016-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.news-press-2016-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.news-press-2016-section .np-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.news-press-2016-section .np-text,
.news-press-2016-section .np-image {
  flex: 1;
}

.news-press-2016-section .np-text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.news-press-2016-section .np-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news-press-2016-section .np-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.news-press-2015-section .np-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.news-press-2015-section .np-text {
  flex: 0 0 50%;
  text-align: left;
  box-sizing: border-box;
  padding-right: 1rem;
}

.news-press-2015-section .np-image {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding-left: 1rem;
}

.news-press-2015-section .np-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-press-2015-section {
  margin-top: 0;
  padding-top: 0;
}

.news-press-2015-section .container {
  padding-top: 0;
}

.news-press-2015-section h2 {
  margin-top: 0;
}

.mobile-kitchen-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.mobile-kitchen-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.mobile-kitchen-section img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-kitchen-section .mk-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.mobile-kitchen-section p,
.mobile-kitchen-section ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.mobile-kitchen-section ul {
  padding-left: 1.2rem;
}

.mobile-kitchen-section a {
  color: var(--accent-green);
  text-decoration: none;
}

.mobile-kitchen-section a:hover {
  text-decoration: underline;
}

.overseas-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.overseas-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.overseas-section img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.overseas-section .subtitle {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.overseas-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.overseas-section blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-green);
  color: #555;
  font-style: italic;
}

.donate-today-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.donate-today-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.donate-today-section .dt-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.donate-today-section .dt-heading {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: var(--text-color);
}

.donate-today-section p,
.donate-today-section ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.donate-today-section ul {
  padding-left: 1.2rem;
}

.donate-today-section a {
  color: var(--accent-green);
  text-decoration: none;
}

.donate-today-section a:hover {
  text-decoration: underline;
}

.donate-today-section hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.our-sponsors-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.our-sponsors-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.our-sponsors-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.our-sponsors-section a {
  color: var(--accent-green);
  text-decoration: none;
}

.our-sponsors-section a:hover {
  text-decoration: underline;
}

.our-sponsors-section .sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.our-sponsors-section .sponsors-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-us-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.contact-us-section h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-us-section .cu-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-us-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-form .row {
  margin-bottom: 1rem;
}

.contact-form .two-cols {
  display: flex;
  gap: 1rem;
}

.contact-form .field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 10px;
  font-size: 0.95rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .cta-button {
  margin-top: 0.5rem;
}

main {
  padding: 30px 20px;
  text-align: center;
  min-height: 400px;
}

.photo-slideshow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slideshow-buttons {
  position: absolute;
  bottom: 2.5%;
  left: 0;
  width: 33.33%;
  height: 66.66%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5%;
  padding-left: 2.5%;
  box-sizing: border-box;
  z-index: 2;
  text-decoration: none;
}

.slideshow-button:visited,
.slideshow-button:active,
.slideshow-button:hover {
  text-decoration: none;
}

.slideshow-button {
  padding: 3% 4%;
  border-radius: 1vw;
  color: var(--white);
  cursor: pointer;
  background-color: rgba(165, 190, 140, 0.4);
  transition: background-color 0.3s ease;
  text-align: left;
  text-decoration: none; /* ✅ Add this line */
}

.slideshow-button .title {
  font-size: 3.5vw;
  font-weight: bold;
  margin-bottom: 0.8vw;
}

.slideshow-button .subtitle {
  font-size: 1.2vw;
  opacity: 0.95;
}

.slideshow-button.light {
  background-color: rgba(205, 223, 160, 0.5);
}

.slideshow-button.medium {
  background-color: rgba(165, 190, 140, 0.5);
}

.slideshow-button.dark {
  background-color: rgba(133, 161, 114, 0.5);
}

.slideshow-button:hover {
  background-color: rgba(120, 150, 100, 0.6);
}

.lower-sections {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
  padding: 0 2.5%;
  box-sizing: border-box;
}

.lower-box {
  flex: 1;
  background-color: var(--main-green);
  height: 540px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.box-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  box-sizing: border-box;
}

.box-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #3b3b3b;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.box-subheading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #3b3b3b;
  text-transform: uppercase;
  text-align: left;
  margin: 18px 0 8px;
}

.box-paragraph {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.6;
}

.scroll-box {
  flex: 1;
  overflow-y: auto;
  padding: 0 2% 2% 2%;
  box-sizing: border-box;
  max-height: calc(100% - 3.5rem);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.box-image {
  width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.box-image2 {
  width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.box-image3 {
  width: 100%;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta-button {
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #94b97f;
}

.footer-section {
  background-color: var(--main-green);
  color: var(--text-color);
  border-top: 2px solid #d6e3b4;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px 20px;
  text-align: center;
}

.contact-box {
  flex: 1 1 200px;
  margin: 10px;
}

.contact-box h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
}

.contact-box hr {
  width: 60%;
  margin: 5px auto 10px;
  border: none;
  border-top: 1px solid #999;
}

.contact-box p {
  margin: 5px 0;
  font-size: 0.95em;
  line-height: 1.4;
}

.social-icons a {
  margin: 0 6px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-note {
  text-align: center;
  font-size: 0.9em;
  padding: 10px 0 20px;
  color: #3b3b3b;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
  padding: 6px 10px;
  border: 1px solid #aaa;
  font-size: 0.85em;
  border-radius: 4px;
  width: 110px;
}

.subscribe-form button {
  padding: 6px 12px;
  background-color: var(--accent-green);
  color: var(--white);
  border: none;
  font-size: 0.85em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-form button:hover {
  background-color: #94b97f;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 30px;
  background-color: var(--main-green);
  border-bottom: 2px solid #d6e3b4;
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 300px;
}

.header-actions button,
.header-actions .action-button {
  padding: 6px 10px;
  font-size: 0.85em;
  border: 1px solid #aaa;
  border-radius: 4px;
  background-color: var(--accent-green);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  text-align: center;
  display: inline-block;
}

.header-actions button:hover,
.header-actions .action-button:hover {
  background-color: #94b97f;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
  }

  main {
    padding: 30px 10px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
    margin-left: 0;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8em;
  }

  main h2 {
    font-size: 1.5em;
  }

  main p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .board-member {
    max-width: 100%;
  }
}
