body {
    font-family: Arial, sans-serif;
  }

  main{
    margin: 105px 0;
    line-height: 1.4;
    box-sizing: border-box;
}

  .blog-title {
    color: var(--Neutral-07, #0A2640);
    text-align: center;
    font-size: clamp(25px, 8vw, 50px);
    font-style: normal;
    font-weight: 700;
    margin: 0;
    padding-top: 80px;
  }
  
  .quote {
    color: var(--Neutral-06, #495460);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    justify-content: center;
    margin: 0 30px;
  }
  
  .quote p {
    margin: 10px 0;
  }

  .header-message {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  .header-message span {
    color: #AD343E;
  }

  .blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px auto;
    padding: 0 5%;
    max-width: 1200px;
  }

  .card {
    border-radius: 12px;
    border: 1px solid var(--Neutral-02, #F9F9F7);
    background: var(--Neutral-01, #FFF);
    overflow: hidden;
    box-shadow: 0px 2.979px 59.574px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }

  .card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }

  .card .info {
    color: var(--Neutral-05, #737865);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    text-align: left;
    margin-top: 10px;
  }

  .card h2 {
    color: var(--Neutral-07, #2C2F24);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    padding: 0 10px;
  }

  .card a {
    color: #AD343E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    width: 100%;
    margin-top: 20px;
    display: inline-block;
  }

  .card .card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }

  .pagination button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #AD343E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .pagination button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .page-indicator {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 20px;
  }

  .page-indicator span {
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #f0f0f0;
    color: #333;
    font-size: 16px;
  }

  .page-indicator .active {
    background-color: #AD343E;
    color: #fff;
  }

  @media (max-width: 768px) {
    .blog-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      padding: 0 10px;
    }

    .card h2 {
      font-size: 18px;
    }

    .pagination button {
      width: 35px;
      height: 35px;
      font-size: 14px;
    }

    .page-indicator span {
      padding: 8px 12px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .blog-container {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 10px;
    }

    .card h2 {
      font-size: 16px;
    }

    .pagination button {
      width: 30px;
      height: 30px;
      font-size: 12px;
    }

    .page-indicator span {
      padding: 6px 10px;
      font-size: 12px;
    }
  }