*{
margin: 0;
padding: 0;
box-sizing: border-box;
}


body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}


header {
  background-color: #003366;
  padding: 20px;
  text-align: center;
}

header .logo img {
  width: 50px;
}


.about-us {
  padding: 40px;
  background-color: #e5e5e5;
}

.about-us h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #003366;
}

.about-content, .community {
  display: flex;
  justify-content:space-between;
  margin-bottom: 40px;
}

.about-content .text, .community .text {
  width: 48%;
}

.about-content .image, .community .image {
  width: 48%;
}

.about-content .image img, .community .image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text p {
  line-height: 1.6;
  font-size: 40px;
  margin-top: 250px;
}

.image img {
  border: 2px solid #ddd;
  border-radius: 8px;
}