body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}

a {
  color: #0073e6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.m-xs {
  margin: 4px !important;
}

.m-sm {
  margin: 8px !important;
}

.m-md {
  margin: 16px !important;
}

.m-lg {
  margin: 32px !important;
}

.m-xl {
  margin: 64px !important;
}

.p-xs {
  padding: 4px !important;
}

.p-sm {
  padding: 8px !important;
}

.p-md {
  padding: 16px !important;
}

.p-lg {
  padding: 32px !important;
}

.p-xl {
  padding: 64px !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #fefefe;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding-top: 70px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hide-desktop {
    display: none !important;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 768px) {
  .show-mobile {
    display: block !important;
  }
}

.show-tablet {
  display: none;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .show-tablet {
    display: block !important;
  }
}

.show-desktop {
  display: none;
}
@media (min-width: 1025px) {
  .show-desktop {
    display: block !important;
  }
}

.touch-friendly {
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffd700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-section {
  background: #faf9f5;
  padding: 24px 0 20px;
  margin-top: 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-top: 1rem;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  margin-top: 0;
}

.hero-content h1 br {
  display: none;
}

.hero-content .hero-desc {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.1rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-content .action-section {
  background: linear-gradient(135deg, #ffd700, #ffe066);
  padding: 1rem;
  border-radius: 15px;
  margin: 1rem 0;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3), 0 4px 15px rgba(44, 62, 80, 0.2);
  border: 2px solid #ffd700;
}

.hero-content .action-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.4rem;
  text-align: center;
}

.hero-content .action-section p {
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: #2c3e50;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 180px;
}

.cta-button:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: white;
  text-decoration: none;
}

.cta-secondary {
  background: white;
  color: #2c3e50;
  border: 2px solid #2c3e50;
  box-shadow: none;
}

.cta-secondary:hover {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .action-section {
    padding: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
    min-height: auto;
  }
  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
  }
  .hero-content {
    grid-area: content;
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1.2rem;
  }
  .hero-content .subtitle {
    order: 1;
  }
  .hero-content h1 {
    order: 2;
  }
  .hero-content .hero-desc {
    order: 3;
  }
  .hero-content .action-section {
    order: 4;
    padding: 1.5rem;
    margin: 1rem 0;
  }
  .hero-content p {
    order: 5;
  }
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .hero-image {
    grid-area: image;
    order: 2;
    margin-top: 1rem;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 360px) {
  .hero-section {
    padding: 1.5rem 0;
  }
  .hero-container {
    padding: 0 0.8rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .action-section {
    padding: 0.8rem;
  }
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}
.site-header {
  background: #fefefe;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 240, 240, 0.8);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 70px;
  position: relative;
}

.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1rem;
  position: relative;
  border-radius: 6px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #2c3e50;
}

/* Subscribe button highlight */
.subscribe-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2c3e50 !important;
  border-radius: 25px;
  padding: 0.8rem 1.5rem !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border-color: #ffd700;
}

.subscribe-btn::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #fff8dc;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  padding: 0 0 2rem 0;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #222;
  font-size: 1.7rem;
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 1001;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-menu-close:hover {
  background: #f5f5f5;
}

.mobile-menu ul {
  list-style: none;
  margin: 3.5rem 0 0 0;
  padding: 0 0 0 0;
}

.mobile-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: #fff8dc;
  color: #2c3e50;
}

.mobile-menu .subscribe-btn {
  margin: 1rem 2rem;
  text-align: center;
  display: block;
  padding: 1rem 2rem;
}

@media (min-width: 481px) and (max-width: 768px) {
  .header-container {
    padding: 0.8rem 1.5rem;
    height: 60px;
  }
  .header-logo img {
    height: 35px;
  }
  .main-nav ul {
    gap: 1.5rem;
  }
  .main-nav a {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
  .subscribe-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    height: 55px;
    position: relative;
  }
  .mobile-menu-toggle {
    display: block;
    order: 1;
    margin-right: 0.5rem;
  }
  .header-logo {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
  }
  .header-logo img {
    height: 30px;
    max-width: 120px;
    margin: 0 auto;
    display: block;
  }
  .header-search-mobile {
    display: block;
    order: 3;
    margin-left: 0.5rem;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    display: none;
  }
}
.header-search-mobile {
  display: none;
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}
@media (max-width: 360px) {
  .header-container {
    padding: 0.5rem 0.8rem;
    height: 50px;
  }
  .header-logo img {
    height: 25px;
  }
  .mobile-menu-toggle {
    font-size: 1.3rem;
    padding: 0.4rem;
  }
}
.site-footer {
  background: #2c3e50;
  color: #fefefe;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-simple {
  text-align: left;
  margin-bottom: 0;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #b0b0b0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.social-link:hover {
  background: #ffd700;
  color: #2c3e50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-link.twitter:hover {
  background: #000000;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 1.5rem;
  text-align: center;
  margin-top: 2rem;
  grid-column: 1/-1;
}

.footer-bottom p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-content {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
  .footer-brand h3 {
    font-size: 1.6rem;
  }
  .footer-brand p {
    font-size: 0.95rem;
  }
  .social-links {
    gap: 0.8rem;
  }
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
  .footer-content {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-simple {
    text-align: center;
  }
  .footer-brand h3 {
    font-size: 1.4rem;
  }
  .footer-brand p {
    font-size: 0.9rem;
  }
  .social-links {
    justify-content: center;
    gap: 0.8rem;
  }
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  .footer-bottom p {
    font-size: 0.85rem;
  }
}
@media (max-width: 360px) {
  .site-footer {
    padding: 1.5rem 0 1rem;
  }
  .footer-content {
    padding: 0 0.8rem;
    gap: 1rem;
  }
  .footer-brand h3 {
    font-size: 1.3rem;
  }
  .footer-brand p {
    font-size: 0.85rem;
  }
  .social-links {
    gap: 0.6rem;
  }
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  .footer-bottom p {
    font-size: 0.8rem;
  }
}
.home-hero {
  padding: 4rem 2rem;
  background: #fefefe;
  text-align: center;
}
@media (max-width: 480px) {
  .home-hero {
    padding: 2rem 1rem;
  }
}

.latest-videos-section {
  padding: 40px 0;
  background: #fefefe;
}

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

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.view-all-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #ffd700;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: transparent;
}

.view-all-link:hover {
  background: #ffd700;
  color: #2c3e50;
  text-decoration: none;
}

.videos-scroll-wrapper {
  position: relative;
  margin-top: 2rem;
}

.videos-scroll-container {
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.videos-scroll-container::-webkit-scrollbar {
  display: none;
}

.videos-horizontal {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
}

.video-card-modern {
  background: #fefefe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 280px;
  flex-shrink: 0;
  position: relative;
}

.video-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card-modern:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.video-card-modern:hover .video-overlay {
  opacity: 1;
}

.play-button {
  background: rgba(255, 0, 0, 0.95);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.video-card-modern:hover .play-button {
  transform: scale(1.1);
  background: rgb(255, 0, 0);
}

.video-content {
  padding: 0.5rem;
}

.video-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 0.2rem;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-date {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

.what-we-do-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.impact-card {
  background: #fefefe;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.impact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffe066);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.impact-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.impact-card p {
  color: #495057;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.impact-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #fefefe, #fff8dc);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.impact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.impact-cta h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.impact-cta p {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.impact-cta .cta-button {
  background: #2c3e50;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.impact-cta .cta-button:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: white;
  text-decoration: none;
}

.recent-blogs-section {
  padding: 40px 0;
  background: #fefefe;
}

.recent-blogs-container {
  position: relative;
  margin-top: 2rem;
}

.blogs-scroll-container {
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blogs-scroll-container::-webkit-scrollbar {
  display: none;
}

.blogs-horizontal {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
}

.blog-card-small {
  background: #fefefe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 280px;
  cursor: pointer;
  position: relative;
}

.blog-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-small img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-small:hover img {
  transform: scale(1.05);
}

.blog-card-small-content {
  padding: 0.8rem;
}

.blog-card-small h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #2c3e50;
  line-height: 1.4;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-small p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd700;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
  left: -25px;
}

.scroll-btn.right {
  right: -25px;
}

@media (min-width: 481px) and (max-width: 768px) {
  .section-container {
    padding: 0 1.5rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .section-title::after {
    width: 80px;
    bottom: -8px;
  }
  .videos-horizontal,
  .blogs-horizontal {
    gap: 1.2rem;
    padding: 0 0.8rem;
  }
  .video-card-modern,
  .blog-card-small {
    width: 280px;
    min-width: 280px;
  }
  .video-card-modern img {
    height: 150px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .impact-card {
    padding: 1.5rem;
  }
  .impact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .latest-videos-section,
  .what-we-do-section,
  .recent-blogs-section {
    padding: 2rem 0;
  }
  .section-container {
    padding: 0 1rem;
  }
  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .section-title::after {
    width: 60px;
    bottom: -6px;
  }
  .view-all-link {
    align-self: flex-end;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  .videos-scroll-wrapper,
  .blogs-scroll-wrapper {
    margin-top: 1.5rem;
  }
  .videos-horizontal,
  .blogs-horizontal {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .video-card-modern,
  .blog-card-small {
    width: 280px;
    min-width: 280px;
  }
  .video-card-modern img {
    height: 150px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .impact-card {
    padding: 1.5rem;
    text-align: center;
  }
  .impact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
  }
  .impact-stats {
    margin-top: 1.5rem;
  }
  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .scroll-btn.left {
    left: 0.5rem;
  }
  .scroll-btn.right {
    right: 0.5rem;
  }
}
@media (max-width: 360px) {
  .latest-videos-section,
  .what-we-do-section,
  .recent-blogs-section {
    padding: 1.5rem 0;
  }
  .section-container {
    padding: 0 0.8rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .video-card-modern,
  .blog-card-small {
    width: 220px;
    min-width: 220px;
  }
  .video-card-modern img {
    height: 120px;
  }
  .impact-card {
    padding: 1rem;
  }
  .impact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  .scroll-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
.about-page {
  margin-top: 20px;
  background: #fefefe;
  min-height: 100vh;
}

.about-hero-section {
  background: linear-gradient(135deg, #fefefe, #fff8dc);
  padding: 4rem 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.about-hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-section .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-section .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-hero-section .hero-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: 0.5px;
}

.about-hero-section p {
  font-size: 1.2rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-hero-section .hero-cta-text {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 600;
}

.about-hero-section .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-hero-section .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-section .hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.what-we-do-section {
  padding: 5rem 0;
  background: white;
}

.what-we-do-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.what-we-do-section .section-header {
  text-align: left;
  margin-bottom: 4rem;
}

.what-we-do-section .section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  text-align: left;
}

.what-we-do-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.what-we-do-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  text-align: left;
  line-height: 1.6;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.what-we-do-card {
  background: #fefefe;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.what-we-do-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.what-we-do-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.what-we-do-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.what-we-do-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.what-we-do-card p {
  color: #495057;
  line-height: 1.6;
  font-size: 0.95rem;
}

.mission-section {
  padding: 40px 0;
  background: #f8f9fa;
}

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

.mission-content {
  max-width: none;
  margin: 0;
  text-align: left;
}

.mission-content .section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  text-align: left;
}

.mission-content .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.mission-description {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  text-align: left;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mission-card {
  background: #fefefe;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-card .mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.mission-card p {
  color: #495057;
  font-size: 0.95rem;
  line-height: 1.6;
}

.join-movement-section {
  padding: 40px 0;
  background: #fefefe;
}

.join-movement-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.join-content {
  max-width: none;
  margin: 0;
  text-align: left;
}

.join-content .section-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  text-align: left;
}

.join-content .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.join-description {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 700px;
  text-align: left;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.join-card {
  background: #fdfcf8;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.join-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
}

.join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.join-card .join-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.join-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.join-card p {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
}

.join-content .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 481px) and (max-width: 768px) {
  .about-hero-section .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .about-hero-section h1 {
    font-size: 3rem;
  }
  .what-we-do-section .section-title,
  .mission-content .section-title,
  .join-content .section-title {
    font-size: 2.4rem;
  }
  .what-we-do-grid,
  .mission-grid,
  .join-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .what-we-do-card,
  .mission-card,
  .join-card {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .about-hero-section {
    padding: 3rem 0;
  }
  .about-hero-section .hero-container {
    padding: 0 1rem;
  }
  .about-hero-section h1 {
    font-size: 2.5rem;
  }
  .about-hero-section p {
    font-size: 1.1rem;
  }
  .what-we-do-section,
  .mission-section,
  .join-movement-section {
    padding: 3rem 0;
  }
  .what-we-do-section .section-container,
  .mission-section .section-container,
  .join-movement-section .section-container {
    padding: 0 1rem;
  }
  .what-we-do-section .section-title,
  .mission-content .section-title,
  .join-content .section-title {
    font-size: 2rem;
  }
  .what-we-do-grid,
  .mission-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .what-we-do-card,
  .mission-card,
  .join-card {
    padding: 1.5rem;
  }
  .join-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.blog-page {
  margin-top: 20px;
  padding: 2rem 0;
  background: #fefefe;
  min-height: 100vh;
}

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

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, #fefefe, #fff8dc);
  border-radius: 20px;
  margin: 0 2rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.blog-header .section-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  display: block;
}

.blog-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
  border-radius: 2px;
}

.blog-header .section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid #f0f0f0;
  margin-top: auto;
}

.read-more {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more:hover {
  background: #ffd700;
  color: #2c3e50;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.blog-date {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.no-posts h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.no-posts p {
  color: #6c757d;
  font-size: 1.1rem;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 3rem 2rem 0 2rem;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.8rem;
  margin: 0 0.1rem;
  background: white;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  min-width: 35px;
  height: 35px;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
}

.pagination-btn:hover {
  background: #fff8dc;
  color: #2c3e50;
  border-color: #ffd700;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.pagination-btn.current {
  background: #ffd700;
  color: #2c3e50;
  border-color: #ffd700;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.pagination-btn.prev,
.pagination-btn.next {
  background: white;
  color: #2c3e50;
  border-color: #f0f0f0;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  min-width: 35px;
  height: 35px;
  font-size: 1rem;
}

.pagination-btn.prev:hover,
.pagination-btn.next:hover {
  background: #fff8dc;
  color: #2c3e50;
  border-color: #ffd700;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

@media (min-width: 481px) and (max-width: 768px) {
  .blog-header .section-title {
    font-size: 2.5rem;
  }
  .blog-header .section-subtitle {
    font-size: 1.1rem;
  }
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .blog-card h3 {
    font-size: 1.3rem;
  }
  .blog-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .blog-page {
    padding: 1rem 0;
  }
  .section-container {
    padding: 0 1rem;
  }
  .blog-header {
    margin-bottom: 3rem;
    padding: 1rem 0;
  }
  .blog-header .section-title {
    font-size: 2rem;
  }
  .blog-header .section-subtitle {
    font-size: 1rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-card-content {
    padding: 1.2rem;
  }
  .blog-card h3 {
    font-size: 1.2rem;
  }
  .blog-card img {
    height: 180px;
  }
  .pagination-container {
    gap: 0.3rem;
  }
  .pagination-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
.support-page {
  margin-top: 20px;
  padding: 2rem 0;
  background: #fefefe;
  min-height: 100vh;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.support-header {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #fefefe, #fff8dc);
  padding: 3rem 0;
  border-radius: 20px;
  margin: 0 2rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.support-header .section-title {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  display: block;
}

.support-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe066);
  border-radius: 2px;
}

.support-desc {
  font-size: 1.2rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.support-content {
  margin-bottom: 2rem;
}

.payment-section {
  margin-bottom: 2rem;
}

.payment-section h2 {
  font-size: 1.6rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.payment-section h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-option {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.payment-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.qr-display {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.qr-display img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.paypal-display {
  background: linear-gradient(135deg, #0070ba, #005ea6);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.paypal-display:hover {
  background: linear-gradient(135deg, #005ea6, #004a8c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 112, 186, 0.3);
}

.paypal-display img {
  max-width: 80%;
  max-height: 80%;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.paypal-display:hover img {
  transform: scale(1.05);
}

.payment-content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.payment-logo {
  width: 35px;
  height: 35px;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.payment-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.payment-content h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.payment-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid #f0f0f0;
}

.payment-type {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
}

.payment-date {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
}

.donate-btn.paypal-btn {
  background: #0070ba;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.donate-btn.paypal-btn:hover {
  background: #005ea6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 112, 186, 0.3);
}

.why-support {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  margin-top: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  text-align: center;
}

.why-support-header {
  margin-bottom: 2rem;
}

.why-support h3 {
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.why-support h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.why-support-desc {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.support-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.reason-card {
  background: #f8f9fa;
  padding: 1.5rem 1.2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.reason-card h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.reason-card p {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.support-disclaimer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.support-disclaimer p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
  .support-page {
    padding: 1rem 0;
  }
  .support-header {
    padding: 2.5rem 1.5rem;
  }
  .support-header .section-title {
    font-size: 2.2rem;
  }
  .payment-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
  }
  .payment-option {
    min-height: 350px;
  }
  .qr-display {
    height: 200px;
  }
  .payment-content {
    padding: 1rem;
  }
  .payment-content h3 {
    font-size: 1.1rem;
  }
  .support-reasons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .why-support {
    padding: 2rem 1.2rem;
  }
  .why-support h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .support-page {
    padding: 0.8rem 0;
  }
  .section-container {
    padding: 0 1rem;
  }
  .support-header {
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
  }
  .support-header .section-title {
    font-size: 2rem;
  }
  .support-desc {
    font-size: 1rem;
  }
  .payment-options {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .payment-option {
    min-height: 320px;
  }
  .qr-display {
    height: 180px;
  }
  .payment-content {
    padding: 0.8rem;
  }
  .payment-content h3 {
    font-size: 1rem;
  }
  .support-reasons {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .why-support {
    padding: 1.5rem 1rem;
  }
  .why-support h3 {
    font-size: 1.4rem;
  }
  .reason-card {
    padding: 1.2rem 0.8rem;
  }
  .reason-icon {
    font-size: 2rem;
  }
}
.main-content {
  margin-top: 20px;
  padding: 2rem 0;
}

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

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.post-meta {
  color: #666;
  margin-bottom: 1rem;
}

.post-thumbnail {
  margin-bottom: 2rem;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #495057;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid #ffd700;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6c757d;
}

.single-blog-page {
  margin-top: 20px;
  padding: 0;
  background: #fefefe;
  min-height: 100vh;
}

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

.single-blog-header {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #fefefe 50%, white 100%);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.single-blog-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 248, 220, 0.8) 0%, rgba(253, 252, 248, 0.6) 50%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

.blog-navigation {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: #fdfcf8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.back-to-blog:hover {
  color: #ffd700;
  transform: translateX(-5px);
}

.blog-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 800;
  text-align: center;
  display: block;
  position: relative;
}

.blog-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #6c757d;
  font-size: 0.95rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item i {
  color: #ffd700;
}

.single-blog-image {
  margin-bottom: 3rem;
  text-align: center;
}

.single-blog-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.single-blog-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #495057;
}

.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
  color: #2c3e50;
  margin: 2.5rem 0 1.5rem 0;
  font-weight: 700;
}

.single-blog-content h2 {
  font-size: 2rem;
}

.single-blog-content h3 {
  font-size: 1.5rem;
}

.single-blog-content p {
  margin-bottom: 1.8rem;
}

.single-blog-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #ffd700;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 1.1rem;
}

.blog-tags {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.blog-tags h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tags-container {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tag {
  background: #fff8dc;
  color: #2c3e50;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

.blog-share {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.blog-share h4 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.copy {
  background: #6c757d;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.related-articles-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0;
  text-align: left;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #ffd700;
}

.view-all-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #ffd700;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: transparent;
}

.view-all-link:hover {
  background: #ffd700;
  color: #2c3e50;
  text-decoration: none;
}

.recent-blogs-container {
  position: relative;
  margin-top: 2rem;
}

.blogs-scroll-container {
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.blogs-scroll-container::-webkit-scrollbar {
  display: none;
}

.blogs-horizontal {
  display: flex;
  gap: 1.5rem;
  padding: 0 1rem;
}

.blog-card-small {
  background: #fefefe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 280px;
  cursor: pointer;
  position: relative;
}

.blog-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-small img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-small:hover img {
  transform: scale(1.05);
}

.blog-card-small-content {
  padding: 0.8rem;
}

.blog-card-small h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #2c3e50;
  line-height: 1.4;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-small p {
  color: #6c757d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffd700;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #2c3e50;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
  left: -25px;
}

.scroll-btn.right {
  right: -25px;
}

.reading-progress {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 215, 0, 0.2);
  z-index: 999;
}

.progress-fill {
  height: 100%;
  background: #ffd700;
  width: 0%;
  transition: width 0.1s ease;
}

@media (max-width: 768px) {
  .section-container {
    padding: 0 1rem;
  }
  .single-blog-header {
    padding: 2rem 0 1.5rem;
  }
  .blog-title {
    font-size: 2rem;
  }
  .blog-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .single-blog-content {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .share-buttons {
    gap: 0.8rem;
  }
  .share-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .tags-container {
    justify-content: center;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .blogs-horizontal {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .blog-card-small {
    width: 250px;
    min-width: 250px;
  }
  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .scroll-btn.left {
    left: 0.5rem;
  }
  .scroll-btn.right {
    right: 0.5rem;
  }
}
@media (max-width: 480px) {
  .single-blog-page {
    padding: 0;
  }
  .single-blog-header {
    padding: 1.5rem 0 1rem;
  }
  .blog-title {
    font-size: 1.8rem;
  }
  .single-blog-content {
    padding: 0 0.5rem;
  }
  .single-blog-image img {
    border-radius: 15px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .blog-card-small {
    width: 220px;
    min-width: 220px;
  }
}
.single-post {
  margin-top: 20px;
  padding: 2rem 0;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.post-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.post-meta {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #495057;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 4px solid #ffd700;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6c757d;
}

.post-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 2rem 0;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.post-navigation h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.post-tags {
  margin-top: 2rem;
}

.post-tags span {
  display: inline-block;
  background: #fff8dc;
  color: #2c3e50;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
