:root {
  --light-purple: #f4e9f9;
  --main-title-color: #34004b;
  --accent-purple: #34004b;
  --text-gray: #333333;
  --text-dark: #333333;
}

.nav-container a {
  font-size: 14px;
  letter-spacing: normal;
}

.navbar-button {
  font-size: 14px;
}

p {
  letter-spacing: -0.02em;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.parent-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0px 20px;
}

.main-container-blogpage {
  width: 60%;
  max-width: 800px;
  align-self: center;
  display: flex;
  flex-direction: column;
}

.category-tag {
  display: inline-block;
  background-color: #f4e9f9;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 13px;
  border-radius: 9px;
  width: fit-content;
  margin-bottom: 15px;
}

.headline {
  font-size: 40px;
  font-weight: 600;
  color: var(--main-title-color);
  line-height: 1.3;
  margin-bottom: 8px;
}

.date {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 40px;
}

.image-container {
  width: 100%;
  background-color: var(--light-purple);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container .img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.paragraph-heading {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.paragraph-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: justify;
}

.sub-paragraph-heading {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  margin-top: 10px;
}

.sub-paragraph-content {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

a {
  font-size: 20px;
}
@media (max-width: 768px) {
  .main-container-blogpage {
    width: 90%; /* Wider on mobile */
  }

  .headline {
    font-size: 24px;
    font-weight: bold;
  }

  .paragraph-heading {
    font-size: 28px;
  }
  .sub-paragraph-content {
    font-size: 14px;
  }
  .sub-paragraph-heading {
    font-size: 16px;
  }
  .paragraph-content {
    font-size: 14px;
  }
  li {
    font-size: 12px;
  }
  a {
    font-size: 12px;
  }
}
