/*--------------------------------------------------------------
# General Variables & Reset
--------------------------------------------------------------*/
:root {
  --primary-color: #0c3c60;
  --secondary-color: #1e6091;
  --accent-color: #d4af37;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #333333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Raleway', serif;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.header .logo h2 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--primary-color);
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li {
  position: relative;
  margin: 0 10px;
}

.navmenu ul li a {
  font-weight: 600;
  padding: 10px 15px;
  color: var(--dark-color);
  position: relative;
}

.navmenu ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.navmenu ul li a:hover::before,
.navmenu ul li a.active::before {
  width: 100%;
}

.navmenu ul li a.active {
  color: var(--primary-color);
}

.header-social-links a {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-left: 15px;
  transition: var(--transition);
}

.header-social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.416) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%); */
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 600px;
  padding: 30px;
  background: rgba(12, 60, 96, 0.313);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 15px;
}

.hero-content h1 .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero-content h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-content h4 .typed {
  color: var(--accent-color);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Bio Section
--------------------------------------------------------------*/
.bio {
  background: var(--light-color);
}

.bio-image {
  position: relative;
}

.bio-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent-color);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge small {
  font-size: 0.9rem;
}

.bio-content .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.bio-content .section-title h2 {
  padding-bottom: 0;
}

.bio-content .section-title h2::after {
  left: 0;
  transform: none;
}

.bio-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.bio-highlights {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.highlight-item .icon {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.highlight-item .icon i {
  font-size: 1.2rem;
}

.highlight-item .content h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.highlight-item .content p {
  color: var(--text-muted);
  margin: 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  text-align: center;
}

.stat {
  flex: 1;
  padding: 15px;
}

.stat span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.read-more-btn i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Activities Section
--------------------------------------------------------------*/
.activity-card-link {
  display: block;
  color: inherit;
  transition: var(--transition);
}

.activity-card-link:hover {
  transform: translateY(-5px);
}

.activity-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.activity-card:hover {
  box-shadow: var(--shadow-lg);
}

.activity-card .card-image {
  position: relative;
  overflow: hidden;
}

.activity-card .card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.activity-card:hover .card-image img {
  transform: scale(1.05);
}

.card-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.card-date .day {
  font-size: 1.2rem;
  font-weight: 700;
}

.card-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.activity-card .card-content {
  padding: 20px;
}

.activity-card .card-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.activity-card .card-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.card-footer .location {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card-footer .location i {
  margin-right: 5px;
}

.card-footer .read-more {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.card-footer .read-more:hover {
  color: var(--accent-color);
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: var(--transition);
}

.view-all-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.view-all-btn i {
  margin-left: 5px;
  transition: var(--transition);
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# News & Updates Section
--------------------------------------------------------------*/
.news-updates {
  background: var(--light-color);
}

.news-carousel {
  padding: 20px 10px 50px;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-content {
  padding: 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.news-meta span {
  display: flex;
  align-items: center;
}

.news-meta i {
  margin-right: 5px;
}

.news-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--accent-color);
}

.news-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.news-link:hover i {
  transform: translateX(5px);
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.swiper-button-next, 
.swiper-button-prev {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.event-card {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  background: var(--primary-color);
  color: white;
  padding: 15px;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 5px;
}

.event-content {
  padding: 20px;
  flex-grow: 1;
}

.event-content h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.event-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-meta span {
  display: flex;
  align-items: center;
}

.event-meta i {
  margin-right: 5px;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.event-btn:hover {
  color: var(--accent-color);
}

.event-btn i {
  margin-left: 5px;
  transition: var(--transition);
}

.event-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info h5 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item .icon {
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-item .icon i {
  font-size: 1.2rem;
}

.contact-item .content h6 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-item .content p {
  color: var(--text-muted);
  margin: 0;
}

.social-links h6 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-color);
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-form h5 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-form .form-control {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(12, 60, 96, 0.25);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: none;
}

.contact-form .btn {
  min-width: 150px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
  margin-top: auto;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

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

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
  color: white;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer-column p {
  margin-bottom: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.copyright {
  margin-bottom: 20px;
  opacity: 0.8;
}

.copyright p {
  margin: 0;
}

.sitename {
  color: var(--accent-color);
  font-weight: 700;
}

.footer .social-links {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.credits {
  opacity: 0.7;
  font-size: 0.9rem;
}

.credits a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.credits a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #e6c44e;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader:after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    padding: 60px 20px;
    z-index: 998;
    transition: all 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .navmenu.active {
    right: 0;
  }
  
  .navmenu ul {
    display: block;
  }
  
  .navmenu ul li {
    margin: 15px 0;
  }
  
  .navmenu ul li a {
    padding: 10px;
    display: block;
    font-size: 1.1rem;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    color: var(--primary-color);
  }
  
  .mobile-nav-toggle.active {
    position: fixed;
    right: 15px;
    top: 15px;
    color: var(--accent-color);
  }
  
  .mobile-nav-toggle.active .bi-list::before {
    content: "\f62a"; /* X icon */
  }
  
  /* Overlay when mobile menu is open */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Prevent body scrolling when mobile nav is open */
  body.mobile-nav-active {
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .header .logo {
    order: 1;
  }
  
  .navmenu {
    order: 3;
  }
  
  .header-social-links {
    order: 2;
    margin-left: auto;
    margin-right: 15px;
  }
  
  .mobile-nav-toggle {
    order: 4;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .bio-content .section-title {
    text-align: center;
  }
  
  .bio-content .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h4 {
    font-size: 1.2rem;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    min-width: auto;
    padding: 10px 20px;
  }
  
  .event-date .day {
    font-size: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0;
    max-width: 120px;
  }
  
  .news-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .event-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
}