<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#hero-6 {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-6 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-6 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.card-item {
  background: #f8f9fa;
  padding: 30px;
  margin: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.card-icon {
  font-size: 48px;
  color: #2575fc;
  margin-bottom: 15px;
}
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-description {
  font-size: 16px;
  color: #555;
}



/* Section wrapper */
#category-posts-21 {
  margin: 0;
  padding: 0;
}

/* Hero banner */
#category-posts-21 .hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#category-posts-21 .hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
#category-posts-21 .hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}
#category-posts-21 .hero-content .hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
#category-posts-21 .hero-content .hero-subtitle {
  font-size: 1.125rem;
  opacity: .9;
}

/* Posts grid */
#category-posts-21 .container {
  padding: 60px 0;
}
#category-posts-21 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2rem;
}

/* Card wrapper */
.post-card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Post card */
#category-posts-21 .post-card {
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease, box-shadow .3s ease;
}
#category-posts-21 .post-card.visible {
  transform: translateY(0);
  opacity: 1;
}
#category-posts-21 .post-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image */
#category-posts-21 .post-card img {
  width: 100%;
  display: block;
}

/* Card body */
#category-posts-21 .card-body {
  padding: 1rem;
}
#category-posts-21 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: #212529;
}
#category-posts-21 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-21 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-21 .btn-readmore:hover {
  color: #14b8a6;
}
#category-posts-21 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination &amp; Load More */
#category-posts-21 .pagination-wrapper,
#category-posts-21 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




#call-to-action-13 {
  padding: 120px 0;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}
#call-to-action-13::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
#call-to-action-13 .container {
  position: relative;
  z-index: 1;
}
#call-to-action-13 h2 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#call-to-action-13 .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#call-to-action-13 .btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  animation: pulse 2s infinite alternate;
}
#call-to-action-13 .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
#call-to-action-13 .btn.primary {
  background-color: #007bff;
  color: #fff;
}
#call-to-action-13 .btn.primary:hover {
  background-color: #0056b3;
}
#call-to-action-13 .btn.secondary {
  background-color: #ffc107;
  color: #333;
}
#call-to-action-13 .btn.secondary:hover {
  background-color: #e0a800;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}


</pre></body></html>