/* =========================================================
   Simple Text Page
========================================================= */

.text-page {
  width: 100%;
  min-height: 900px;
  background: #f7f7f2;
  color: #333333;
  padding: 28px 16px 38px;
  display: flex;
  flex-direction: column;
}

.text-page-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 34px;
}

.text-page-logo img {
  width: 180px;
  max-width: 45%;
  height: auto;
  object-fit: contain;
}

.text-page-content {
  width: 100%;
  text-align: left;
  direction: ltr;
  margin-bottom: auto;
}

.text-page-content p {
  font-size: 13px;
  color: #333333;
  line-height: 1.55;
  margin-bottom: 2px;
}

/* ================= Follow Section ================= */

.text-follow-section {
  padding: 260px 18px 18px;
  text-align: center;
}

.text-follow-section h2 {
  color: #333333;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 28px;
}

.text-social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.text-social-list a {
  color: #555555;
  font-size: 34px;
  transition: 0.2s ease;
}

.text-social-list a:hover {
  color: #005331;
}

/* ================= Responsive Text Page ================= */

@media (max-width: 1024px) {
  .text-page {
    min-height: 780px;
    padding: 26px 14px 36px;
  }

  .text-page-logo img {
    width: 160px;
  }

  .text-follow-section {
    padding-top: 200px;
  }
}

@media (max-width: 768px) {
  .text-page {
    min-height: auto;
    padding: 24px 12px 34px;
  }

  .text-page-logo {
    margin-bottom: 28px;
  }

  .text-page-logo img {
    width: 135px;
    max-width: 50%;
  }

  .text-page-content p {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 6px;
  }

  .text-follow-section {
    padding-top: 120px;
  }

  .text-follow-section h2 {
    font-size: 24px;
  }

  .text-social-list {
    gap: 24px;
  }

  .text-social-list a {
    font-size: 29px;
  }
}

@media (max-width: 520px) {
  .text-page {
    padding: 22px 10px 30px;
  }

  .text-page-logo img {
    width: 120px;
  }

  .text-page-content {
    text-align: right;
    direction: rtl;
  }

  .text-page-content p {
    font-size: 12px;
    line-height: 1.8;
  }

  .text-follow-section {
    padding-top: 80px;
  }

  .text-social-list {
    gap: 20px;
  }
}
