body {
  background-color: #000000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 17.5px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

.main-header {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px 30px;
  flex-wrap: wrap;
  text-align: left;
}

.main-header img {
  border-radius: 5px;
  width: 190px;
  flex-shrink: 0;
}

.main-header-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}

.main-header-text span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
}

.main-header p {
  max-width: 700px;
  margin: 30px auto 0;
  color: #ccc;
  font-size: 1rem;
  text-align: center;
}


.main-blog-header {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 60px 20px 30px;
  text-align: center;
}

.main-blog-header img {
  border-radius: 5px;
  width: 100%;
  max-width: 800px;
  height: auto;
  flex-shrink: 0;
}

.main-blog-header-text span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.main-blog-header-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}


@media (max-width: 768px) {
  .main-blog-header img {
    max-width: 90vw;
  }

  .main-blog-header-text h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .main-blog-header img {
    max-width: 100vw;
  }

  .main-blog-header-text h1 {
    font-size: 1.5rem;
  }

  .main-blog-header-text span {
    font-size: 0.75rem;
  }
}

ul{
  padding: 0px;
}


.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
  text-align: left;
}

.section h2 {
  margin-top: 40px;
  font-size: 24px;
}

.section p {
  margin-bottom: 20px;
}


.section p+div,
.section p+img,
.section p+figure {
  margin-top: 20px;
}

.content-img {
  border-radius: 5px;
  max-width: 100%;
  display: block;
  margin-top: 20px;
}

.caption {
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
  text-align: center;
}