.page-block {
  padding: 60px 0;
}

@media (max-width: 1024px) {
    .page-block {
      padding: 40px 0;
    }
  }

.page-block__title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}
.page-block__content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;

  h1,
  h2,
  h3,
  h4 {
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1rem;
    color: #222;
  }

  p {
    margin-bottom: 1em;
  }

  ul,
  ol {
    list-style: inherit;
    padding-left: 1.5em;
    margin-bottom: 1em;
  }

  a {
    color: #0077cc;
    text-decoration: none;
  }

  a:hover,
  a:focus {
    text-decoration: underline;
  }

  img {
    margin: 1.5rem 0;
    max-width: 100%;
    height: auto;
    display: inline-block;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    overflow-x: auto;
  }

  table th,
  table td {
    padding: 0.75rem;
    border: 1px solid #ccc;
    text-align: left;
  }
}

/* Responsive: Tablet & Mobile */
@media (max-width: 1024px) {
  .page-block__content {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .page-block__content {
    font-size: 0.95rem;
    padding: 0 1rem;

    h1 {
      font-size: 1.75rem;
    }

    h2 {
      font-size: 1.5rem;
    }

    h3 {
      font-size: 1.25rem;
    }

    h4 {
      font-size: 1.1rem;
    }

    table,
    table th,
    table td {
      font-size: 0.9rem;
    }
  }
}

@media (max-width: 480px) {
  .page-block__content {
    font-size: 0.9rem;
    padding: 0 0.75rem;

    p {
      max-width: 100%;
    }

    ul,
    ol {
      padding-left: 1.25em;
    }
  }
}
