@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* Main Stylesheet for Public Site */

::selection {
  background: #4472c4;
  color: #fff;
}

::-moz-selection {
  background: #4472c4;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #4472c4;
  border-radius: 20px;
  transition: 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #4472c4;
}

:root {
  --primary-color: #4472c4;
  --secondary-color: #333333;
  --accent-color: #4d4d4d;
  --text-color: #4d4d4d;
  --bg-color: #ececec;
  --light-bg: #f5f5f5;
  --border-color: #e0e0e0;
  --font-family: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

/* Home page full-screen background - Desktop only */
body.home-page {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  overflow: hidden; /* غیرفعال کردن اسکرول در دسکتاپ */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: -2rem;
}

/* Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-loader[style*="display: none"] {
  display: none !important;
}

.loader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 200px;
  height: 200px;
}

.loader-node {
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 4px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-node:nth-child(1) {
  animation-delay: 0s;
}
.loader-node:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-node:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-node:nth-child(4) {
  animation-delay: 0.2s;
}
.loader-node:nth-child(5) {
  animation-delay: 0.4s;
}
.loader-node:nth-child(6) {
  animation-delay: 0.6s;
}
.loader-node:nth-child(7) {
  animation-delay: 0.4s;
}
.loader-node:nth-child(8) {
  animation-delay: 0.6s;
}
.loader-node:nth-child(9) {
  animation-delay: 0.8s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-node {
    animation: none;
    opacity: 0.5;
  }
}

/* Header */
.main-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Ensure header is transparent on home page */
body.home-page .main-header {
  background: transparent;
}

/* --- Layout اصلی Navbar --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* لوگو چپ - منو راست */
  padding: 3.5rem 0 0 0;
}

/* لوگو */
.navbar-brand .logo {
  height: 55px;
  width: auto;
  margin-top: 20px;
}

.navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

/* --- راست‌چین کردن منو و زبان --- */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px; /* فاصله بین منو و دراپ‌دان */
}

/* --- منو --- */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.navbar-menu li {
  position: relative;
  padding-right: 20px;
}

.navbar-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: #6e6e6e;
}

.navbar-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.navbar-menu a:hover {
  color: var(--primary-color);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.current-lang {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  margin-top: 1px;
  display: none;
  min-width: 40px;
  z-index: 20;
  border-radius: 5px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu button {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

.dropdown-menu button:hover {
  background: #4472c4;
  color: #fff;
}

.language-dropdown.open .dropdown-menu {
  display: block !important;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  position: relative;
  z-index: 1001;
}

.navbar-toggle i {
  color: var(--text-color);
  font-size: 1.8rem;
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navbar-toggle .close-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.navbar-toggle.open .open-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.navbar-toggle.open .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (max-width: 768px) {
  .navbar-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 90%;
    max-width: 400px;
    flex-direction: column;
    padding: 10px 20px;
    box-shadow: 25px 25px 0px #4473c4, 8px 8px 15px rgba(0, 0, 0, 0.4);
      border-radius: 5px;

    z-index: 999;
  }

  .navbar-right.open {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .navbar-menu li::after {
    display: none;
  }

  .navbar-menu a {
    display: block;
    padding: 12px 20px;
  }

  .language-dropdown {
    width: 100%;
    padding: 5px 10px;
    position: relative;
  }

  .language-dropdown:hover .dropdown-menu {
    display: none;
  }

  .language-dropdown.open .dropdown-menu {
    position: relative;
    margin-top: 5px;
    box-shadow: none;
    border: 2px solid #4472c4;
  }
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Home page main content - transparent background */
body.home-page .main-content {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-section {
  position: relative;
  width: 100%;
  background-color: transparent;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}


.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 11111;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 70% 45%;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  min-height: auto;
  padding: 4rem 20px;
  z-index: 2;
  width: 100%;
}



/* Home page hero section adjustments */
body.home-page .hero-section {
  position: relative;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}

/* ستون متن */
.text-page-home {
  width: 850px;          /* عرض مرجع واحد */
  max-width: 100%;
  margin-top: -30px;
  text-align: left;     /* برای RTL */
}

.text-page-home h1,
.text-page-home p {
  margin-inline-start: 0;
  margin-inline-end: 0;
}


.text-page-home-h1 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
  max-width: 100%;
}

.hero-subtitle {
  color: #4472c4;
  font-weight: 600;
  font-size: 1.3rem;
  margin: 1.2rem 0 0 0.5rem;
}

.text-page-home-p {
  max-width: 750px;
  font-size: 1.1rem;
  text-align: justify;
}


.image-page-home {
  display: flex;
  justify-content: center;
  margin-right: 45%;
}

.image-card {
  position: relative;
  background: #fff;
  box-shadow: -2px 10px 30px #333333dc;
  padding: 18px 0;
  border-radius: 0;
  width: 100%;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #4472c4;
  transform: translate(40px, 50px);
  height: 95%;
  width: 96%;
  z-index: -1;
  border-radius: 0;
  box-shadow: 5px 5px 30px #333333dc;
}

.image-card img {
  display: block;
  max-width: 400px;
  width: 100%;
  height: 400px;
}



/* Tablet Responsive Design (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  /* تنظیمات hero-section برای تبلت - فعال کردن اسکرول */
  .hero-section {
    min-height: auto;
    display: block;
    padding: 20px 15px;
    margin-top: 100px;
  }

  /* فعال کردن اسکرول در تبلت */
  body.home-page {
    overflow: auto;
  }

  /* تنظیمات hero-grid برای تبلت */
  .hero-grid {
    grid-template-columns: 1fr; /* یک ستون برای تبلت */
    gap: 3rem;
    padding: 3rem 15px;
    align-items: center;
  }

  /* تنظیمات متن برای تبلت */
  .text-page-home {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    text-align: center; /* مرکز چین برای تبلت */
  }

  .text-page-home-h1 {
    font-size: 2.5rem; /* اندازه متوسط برای تبلت */
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin: 1rem 0;
  }

  .text-page-home-p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    text-align: justify;
  }

  /* تنظیمات تصویر برای تبلت */
  .image-page-home {
    margin-right: 0;
    justify-content: center;
    order: -1; /* تصویر اول قرار گیرد */
  }

  .image-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .image-card img {
    max-width: 100%;
    height: 500px;
  }

  /* تنظیمات دکمه‌ها برای تبلت */
  .buttons-home {
    margin-top: 2.5rem;
    justify-content: center;
  }

  .btn-one,
  .btn {
    width: 200px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Mobile Responsive Design - Only for Mobile Devices */
@media (max-width: 768px) {
  /* تنظیمات hero-section برای موبایل - فعال کردن اسکرول */
  .hero-section {
    min-height: auto;
    display: block;
    margin-top: 100px;
  }

  /* فعال کردن اسکرول عمودی در موبایل */
  body.home-page {
    overflow: auto; /* فعال کردن اسکرول در موبایل */
  }

  /* جلوگیری از اسکرول افقی */
  body {
    overflow-x: hidden;
  }

  /* تنظیمات کانتینر برای موبایل */
  .container {
    padding: 0 15px;
  }

  /* هدر موبایل */
  .navbar {
    padding: 1rem 0 0 0;
  }

  .navbar-brand .logo {
    height: 45px;
    margin-top: 15px;
  }

  /* گرید هیرو - کاملاً موبایل محور */
  .hero-grid {
    grid-template-columns: 1fr; /* فقط ستونی */
    padding: 2rem 10px;
    gap: 2rem;
    align-items: start;
  }

  /* تنظیمات متن برای موبایل */
  .text-page-home {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    text-align: left; /* وسط چین برای موبایل */
  }

  .text-page-home-h1 {
    font-size: 1.8rem; /* اندازه مناسب موبایل */
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem 0;
    text-align: left;
  }

  .text-page-home-p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    max-width: 100%;
  }


  /* تصویر برای موبایل */
  .image-page-home {
    margin-right: 0;
    margin-top: 2rem;
    order: 2; /* تصویر بعد از متن قرار گیرد */
  }

  .image-card {
    max-width: 280px; /* کوچکتر کردن کل باکس تصویر */
  }

  .image-card img {
    max-width: 400px; /* برگرداندن به اندازه دسکتاپ */
    height: 350px; /* ارتفاع هم به حالت اول */
  }

  /* تنظیمات هیرو سکشن برای موبایل */
  body.home-page .hero-section {
    padding-left: 15px;
    padding-right: 15px;
    min-height: auto;
  }

  /* تنظیمات بدنه صفحه اصلی برای موبایل */
  body.home-page .main-content {
    height: auto;
    padding: 1rem 0;
  }

  /* تنظیمات پس‌زمینه برای موبایل */
  body.home-page::before {
    background-size: cover;
    background-position: center center;
  }

  /* تنظیمات الگوی پس‌زمینه برای موبایل */
  .hero-bg-pattern {
    background-size: 80%;
    opacity: 0.2;
  }

}





.btn-one {
  color: #fff;
  background-color: #4472c4;
  padding: 10px 0;
  text-decoration: none;
  transition: 0.5s ease;
  width: 250px;
  height: 45px;
  font-weight: 300;
  text-align: center;
  border-radius: 5px;
  margin-right: 13px;
}


.btn-one:hover {
  transition: 0.5s ease;
  color: #4472c4;
  background-color: transparent;
  border: 1px solid #4472c4;
  padding: 10px 20px;
  text-decoration: none;
}

.btn {
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--text-color);
  padding: 10px 0;
  text-decoration: none;
  transition: 0.5s ease;
  width: 250px;
  height: 45px;
  font-weight: 400;
  text-align: center;
  border-radius: 5px;
}

.btn:hover {
  transition: 0.5s ease;
  color: #fff;
  background-color: #4472c4;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
}

.btn-two {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px 50px;
  text-decoration: none;
  transition: 0.5s ease;
}
/* 
.btn:hover {
  transition: 0.5s ease;
  background-color: #5b97ff;
  padding: 10px 20px;
  text-decoration: none;
} */

.buttons-home {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
}



/* Sections */
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.buttons-home {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
}

/* برای موبایل زیر 768px */
@media (max-width: 768px) {
  .buttons-home {
    flex-direction: column; /* دکمه‌ها زیر هم قرار می‌گیرند */
    align-items: center; /* وسط چین کردن دکمه‌ها */
  }

  .buttons-home a {
    width: 100%; /* دکمه‌ها تمام عرض کانتینر می‌شوند */
    text-align: center;
  }

  .btn-one {
    margin-right: 0; /* حذف margin سمت راست در موبایل */
  }
}

/* Small Mobile Devices (480px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
  /* تنظیمات hero-section برای موبایل متوسط */
  .hero-section {
    padding: 0 15px;
  }

  /* تنظیمات hero-grid برای موبایل متوسط */
  .hero-grid {
    padding: 1.5rem 10px;
    gap: 1.5rem;
  }

  /* تنظیمات متن برای موبایل متوسط */
  .text-page-home {
    margin-top: 15px;
    padding: 0 10px;
    text-align: center; /* مرکز چین کردن متن */
  }

  .text-page-home-h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0.8rem 0 1.2rem 0;
    text-align: center;
  }

  .text-page-home-p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: justify;
    text-align-last: center; /* آخرین خط متن هم مرکز چین */
  }

  /* تنظیمات تصویر برای موبایل متوسط */
  .image-card {
    max-width: 280px;
  }

  .image-card img {
    height: 280px;
  }

  /* تنظیمات دکمه‌ها برای موبایل متوسط */
  .buttons-home {
    margin-top: 1.5rem;
    gap: 12px;
    justify-content: center;
  }

  .btn-one,
  .btn {
    width: 160px;
    height: 45px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  /* تنظیمات hero-section برای موبایل خیلی کوچک */
  .hero-section {
    padding: 0 15px;
  }

  /* تنظیمات hero-grid برای موبایل خیلی کوچک */
  .hero-grid {
    padding: 1rem 8px;
    gap: 1rem;
  }

  /* تنظیمات متن برای موبایل خیلی کوچک */
  .text-page-home {
    margin-top: 10px;
    padding: 0 5px;
    text-align: center; /* مرکز چین کردن متن */
  }

  .text-page-home-h1 {
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    letter-spacing: 0.2px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin: 0.6rem 0 1rem 0;
    line-height: 1.3;
    text-align: center;
  }

  .text-page-home-p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    text-align: justify;
    text-align-last: center; /* آخرین خط متن هم مرکز چین */
  }

  /* تنظیمات تصویر برای موبایل خیلی کوچک */
  .image-card {
    max-width: 200px;
    padding: 12px 0;
  }

  .image-card img {
    height: 240px;
  }

  /* تنظیمات دکمه‌ها برای موبایل خیلی کوچک */
  .buttons-home {
    margin-top: 1.2rem;
    gap: 10px;
    justify-content: center;
  }

  .btn-one,
  .btn {
    width: 140px;
    height: 40px;
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

.features-section,
.services-preview {
  padding: 4rem 0;
}

.features-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card,
.service-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.service-card h2 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Page Header */
.page-header {
  background: var(--light-bg);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services List */
.services-list {
  padding: 3rem 0;
}

.service-card {
  text-align: left;
}

.service-icon {
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--primary-color);
}

/* News */
.news-list {
  padding: 3rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
}

.article-content time {
  color: #666;
  font-size: 0.9rem;
}

.article-content h2 {
  margin: 1rem 0;
}

.article-content h2 a {
  color: var(--text-color);
  text-decoration: none;
}

.article-content h2 a:hover {
  color: var(--primary-color);
}

/* News Detail */
.news-detail {
  padding: 3rem 0;
}

.article-header {
  margin-bottom: 2rem;
}

.article-header time {
  color: #666;
  font-size: 0.9rem;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.article-cover img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 1rem;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 2rem 0;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Contact Form */
.contact-form-section {
  padding:0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-form {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Messages */
.messages {
  margin: 1rem 0;
  width: 73%;
  margin-right: auto;
  margin-left: auto;
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.alert-success {
  background: #d4edda;
  color: #179635;
  border-radius: 5px;
}

.alert-error {
  background: #f8d7da;
  color: #8e1824;
  border-radius: 5px;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.page-info {
  padding: 0.5rem 1rem;
}

.text-center {
  text-align: center;
}