* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 96%;
  max-width: 1400px;
  margin: auto;
}

/* PAGE BACKGROUND */

.article-section {
  background: #ffff;
  padding: 60px 0 100px;
}

/* CONTAINER */

.article-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* TOP IMAGE */

.article-image {
  width: 100%;
  margin-bottom: 40px;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* TITLE */

.article-container h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #111;
}

/* INTRO */

.intro {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

/* SUBHEADINGS */

.article-container h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #111;
}

/* PARAGRAPHS */

.article-container p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.article-container h5 {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
/* LIST */

.article-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.article-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* ORDERED LIST */

ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* REFERENCE */

.reference {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 25px;
  color: #333;
}

/*SECTION*/

.advantage-section {
  background: #ffff;
  padding: 0px 0 100px;
}

/* TITLE */

.advantage-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
}

.advantage-title span {
  color: #e2a100;
}

/* GRID */

.advantage-grid {
  display: flex;
  justify-content: space-between;
}

/* CARD */

.advantage-card {
  width: 420px;
  text-align: center;
}

/* IMAGE */

.advantage-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  /* border-radius: 18px; */
  display: block;
}

/* TEXT */

.advantage-card p {
  margin-top: 16px;
  font-size: 18px;
  color: #222;
  text-align: justify;
}
.advantage-card a {
  text-decoration: none;
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .blog-hero {
    height: 350px;
  }

  .blog-hero h1 {
    font-size: 38px;
  }

  .article-container {
    width: 95%;
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .blog-hero {
    height: 300px;
    justify-content: center;
  }

  .blog-content {
    padding: 30px 20px;
    text-align: center;
  }

  .blog-hero h1 {
    font-size: 32px;
  }

  .article-section {
    padding: 40px 0 60px;
  }

  .article-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .intro {
    font-size: 15px;
  }

  .article-container h3 {
    font-size: 16px;
  }

  .article-container p,
  .article-section ul li,
  ol li {
    font-size: 14px;
  }

  .advantage-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .advantage-card {
    width: 100%;
    max-width: 380px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .blog-hero h1 {
    font-size: 28px;
  }

  .article-container h1 {
    font-size: 24px;
  }
  .advantage-title {
    font-size: 26px;
  }

  .advantage-card img {
    height: 250px;
  }
}
