body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: white;
}

/* Remove background + padding so the image is clean */
header {
  position: relative;
  background: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}
#headimg {
    display: block;
}
/* Center text over the image */
#headtext {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
}

/* Navigation */
nav {
    background: #34495e;
    padding: 10px;
}

nav a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Sections */
section {
    padding: 20px;
}

section h2 {
    text-align: left;
    position: relative;
    margin-bottom: 40px;
}

section h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    margin: 10px auto 0 auto;
}

h1 {
 padding: 0px;
 margin-bottom: 0px;
 height: 25px;
}

.headerline {
  margin-top: 0px;
  padding: 0px;
  background-color: green;
}

h2 {
    color: #2c503b;
}

h3 {
    color: black;
    text-align: center;
}

#boardmembersGroup {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.boardmember img {
  width: 150px;
  height: 150px;
  box-shadow: 6px 6px 15px rgba(0,0,0,0.25);
}

.boardmember img {
  transition: 0.3s ease;
}

.boardmember img:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 15px rgba(0,0,0,0.35);
}

.name {
  font-weight: bold;
  margin: 8px 0 2px 0;
}

.position {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

#menGroup {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.men img {
  width: auto;
  height: 300px;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.3);
}

.QRcode img {
  width: auto;
  height: 200px;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
}

.icons {
  width: 60px;
  height: 60px;
}

#footerimgGroup {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  margin-bottom: 100px;
}

#footerimg1 img {
  width: auto;
  height: auto;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.3);
  margin-left: 20px;
}

#footerimg2 img {
  text-align: center;
  width: auto;
  height: auto;
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.3);
  margin-left: 20px;
}

.footername {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  width: auto;
  margin-left: 20px;
}