body {
  font-family: Arial, sans-serif;
  background: #D8D2E1; /* path to image */
  background-size: cover;      /* fill container */
  background-position: center; /* center image */
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

header {
  background: #34435E;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}

main {
  padding: 2rem;
  
}

.hero {background-image: url('assets/background1.jpg'); /* path to image */
  background-size: cover;      /* fill container */
  background-position: center; /* center image */
  background-repeat: no-repeat;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.teammember {
  border: 1px solid #ddd;
  background-color: white;
  padding: 2rem;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap:20px;
    width: 700px;  
    text-align: center;
    border-radius: 15px;
}
.team-member {
  border: 1px solid #ddd;
  background-color: white;
  padding: 1rem;
  margin: 10px auto;
  display: flex;
  align-items: flex-start;
  gap:20px;
    width: 900px; 
    border-radius: 15px; 
}
.side-image {
  width: 100%;
  max-width: 120px;
  height: auto;
  flex-shrink: 0;          /* prevent shrinking */
}
.team-text{
    display: flex;
  align-items: flex-start;
    flex-direction: column;
    line-height: 1.2;   
       flex-wrap: wrap;
}.team-text p {
  display: block; /* override flex behavior */
  white-space: normal; 
}.inline-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
}
.center{
    justify-content: center;
  text-align: center;
}
.logo {
  width: 200px;   /* shrink width */
  height: auto;   /* maintain aspect ratio */
}
.logo1{
     width: 100%;     /* stretch to full width */
  height: 225px;   /* maintain aspect ratio */
  display: block;  /* removes unwanted spacing below image */

}.image-text-block {
  display: flex;
  align-items: flex-start;  /* aligns the top of text with image */
  gap: 20px;                /* space between image and bullet points */
  margin: 2rem 0;
}

.image-text-block .side-image {
  width: 150px;    /* adjust as needed */
  height: auto;
}

.image-text-block .side-text {
  margin: 0;
  padding-left: 20px; /* optional, space for bullets */
   font-size: 2rem;
  list-style-type: disc;  /* default bullet style */
}