.page-content {
  background: #f7f8fa;
  padding: 60px 15px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2c2c2c;
}

/* Container */
.page-content .container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Headings */
.page-content h1 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #111;
  border-left: 5px solid #111;
  padding-left: 12px;
}

.page-content h2 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.page-content h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.page-content h4 {
  font-size: 18px;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #333;
}

/* Paragraph */
.page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

/* Lists */
.page-content ul {
  padding-left: 20px;
  margin: 10px 0 20px;
}

.page-content ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

/* Links */
.page-content a {
  color: #0b57d0;
  text-decoration: none;
  word-break: break-word;
}

.page-content a:hover {
  text-decoration: underline;
}

/* Strong text */
.page-content strong {
  color: #111;
}

/* Better spacing for sections */
.page-content br {
  display: none;
}

/* Card effect for sections (optional premium feel) */
.page-content h2,
.page-content h3 {
  scroll-margin-top: 80px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .page-content .container {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .page-content h1 {
    font-size: 26px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .page-content h3 {
    font-size: 18px;
  }

  .page-content p,
  .page-content ul li {
    font-size: 14px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  .page-content {
    padding: 30px 10px;
  }

  .page-content .container {
    padding: 18px 15px;
  }
}


.footer-bottom{
  width:100%;
  padding:1.5rem 5rem 1.5rem;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* LEFT COPYRIGHT */
.footer-bottom p{
  color:rgb(0, 0, 0);
  font-size:0.78rem;
  margin:0;
}

/* RIGHT LINKS */
.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin-left:auto;
}

.footer-bottom-links a{
  color:white;
  font-size:0.78rem;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom-links a:hover{
  color:var(--green-light);
}

/* MOBILE */
@media(max-width:768px){

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-bottom-links{
    margin-left:0;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
  }

}