
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
.header {
  background: #004d40;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header .logo {
  height: 60px;
  margin-right: 1rem;
}

.header h1 {
  font-size: 1.5rem;
  flex-grow: 1;
}

.nav {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  background: url('images/hero.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: 2rem;
  background: white;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.section h2 {
  margin-bottom: 1rem;
}

/* Form */
form {
  display: none;
}  /* Hide the contact form as it's replaced by text */

/* Meeting and update info */
ul {
  margin-left: 1.5rem;
  list-style-type: disc;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
  margin-top: 2rem;
}

.footer a {
  color: #90caf9;
  text-decoration: underline;
}
