/* Ultra Premium Hero Section - Optimized Spacing */
.charity-hero-premium {
  /* Premium Color Palette */
  --color-primary: #0a0d1a;
  --color-secondary: #1a1f36;
  --color-accent: #4c51bf;
  --color-accent-light: #667eea;
  --color-accent-dark: #3730a3;
  --color-purple: #8b5cf6;
  --color-cyan: #06b6d4;
  --color-gold: #f59e0b;
  --color-success: #10b981;
  
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-surface-elevated: rgba(255, 255, 255, 0.1);
  --color-border: rgba(255, 255, 255, 0.15);
  --color-text-primary: #ffffff;
  --color-text-secondary: #e2e8f0;
  --color-text-muted: #94a3b8;
  
  /* Premium Gradients */
  --gradient-luxury: linear-gradient(135deg, #0a0d1a 0%, #1a1f36 25%, #2a1f3d 50%, #1a1f36 75%, #0a0d1a 100%);
  --gradient-primary: linear-gradient(135deg, #4c51bf 0%, #667eea 50%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
  
  /* Premium Shadows */
  --shadow-luxury: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 80px rgba(139, 92, 246, 0.1);
  --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(76, 81, 191, 0.4);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  --blur-glass: 25px;
  --radius-premium: 24px;
  --radius-elegant: 20px;
  --radius-soft: 16px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-quick: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-premium: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.charity-hero-premium {
  position: relative;
  min-height: 70vh; /* Reduced from 80vh */
  background: var(--gradient-luxury);
  padding: 1.5rem 0 2.5rem; /* Reduced padding */
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Atmospheric Background - Same as before */
.charity-hero-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.charity-hero-gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(76, 81, 191, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 60% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  animation: mesh-rotation 30s linear infinite;
}

@keyframes mesh-rotation {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.05); }
}

/* Floating orbs - Same as before */
.charity-hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.charity-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float-orb 20s ease-in-out infinite;
}

.charity-hero-orb-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(76, 81, 191, 0.6) 0%, transparent 70%);
}

.charity-hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
  animation-delay: -10s;
}

.charity-hero-orb-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(30px, -40px) scale(1.1); opacity: 0.5; }
}

/* Main Container - Optimized height */
.charity-hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.8fr;
  gap: 3rem; /* Reduced from 4rem */
  align-items: center;
  position: relative;
  z-index: 10;
  min-height: 60vh; /* Reduced from 70vh */
}

/* Content Section */
.charity-hero-content-section {
  animation: slide-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* Trust Badge - Compact */
.charity-hero-trust-indicator {
  position: relative;
  display: inline-flex;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.charity-hero-badge-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: var(--gradient-accent);
  border-radius: 60px;
  opacity: 0.3;
  filter: blur(25px);
  animation: pulse-glow 6s ease-in-out infinite;
}

.charity-hero-badge-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-glass));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 0.75rem 1.75rem; /* Reduced padding */
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
}

.charity-hero-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.charity-hero-badge-title {
  font-weight: 800;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin: 0;
}

.charity-hero-badge-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
}

/* Title Section - Optimized spacing */
.charity-hero-title-section {
  margin-bottom: 1.25rem; /* Reduced from 1.5rem */
}

.charity-hero-main-title {
  margin: 0;
  font-size: 3.25rem; /* Slightly smaller */
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.charity-hero-title-primary {
  display: block;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  opacity: 1;
}

.charity-hero-title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem; /* Slightly smaller */
  transition: all 0.3s ease;
  opacity: 1;
}

/* Description - Optimized height */
.charity-hero-description-wrapper {
  height: 80px; /* Reduced from 100px */
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  position: relative;
  overflow: visible;
  z-index: 2;
}

.charity-hero-description-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.charity-hero-description-text {
  font-size: 0.95rem; /* Slightly smaller */
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-weight: 400;
  position: relative;
  min-height: 80px;
}

/* Typing cursor */
.charity-hero-description-text::after {
  content: '|';
  color: var(--color-accent);
  font-weight: 700;
  opacity: 0;
  margin-left: 2px;
  animation: none;
}

.charity-hero-description-text.typing::after {
  opacity: 1;
  animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Action Buttons - Compact */
.charity-hero-action-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.charity-hero-btn-premium {
  position: relative;
  text-decoration: none;
  transition: var(--transition-premium);
  overflow: hidden;
  border-radius: 60px;
}

.charity-hero-btn-surface {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem; /* Reduced padding */
  border-radius: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-premium);
  overflow: hidden;
  min-width: 160px;
}

/* Gallery Section - Optimized */
.charity-hero-gallery-section {
  animation: slide-in-up 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.charity-hero-gallery-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1; /* Slightly wider ratio */
}

.charity-hero-project-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-premium);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--blur-glass));
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.charity-hero-project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.charity-hero-project-slide.active {
  opacity: 1;
}

/* Map Section - Compact */
.charity-hero-map-section {
  animation: slide-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.charity-hero-map-header {
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  display: flex;
  justify-content: center;
}

.charity-hero-map-title {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-glass));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  padding: 0.75rem 1.25rem; /* Reduced padding */
  box-shadow: var(--shadow-glass);
  font-size: 0.9rem;
}

.charity-hero-countries-showcase {
  position: relative;
  height: 350px; /* Reduced from 400px */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--blur-glass));
  border-radius: var(--radius-premium);
  padding: 1.5rem; /* Reduced from 2rem */
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.charity-hero-country-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.charity-hero-country-view.active {
  opacity: 1;
}

.charity-hero-country-label {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.charity-hero-country-visual {
  width: 100%;
  height: 250px; /* Reduced from 280px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.charity-hero-country-visual img {
  max-width: 85%;
  max-height: 85%;
  transition: var(--transition-premium);
  filter: drop-shadow(0 15px 30px rgba(76, 81, 191, 0.3));
}

/* Responsive optimizations */
@media (max-width: 1400px) {
  .charity-hero-container {
    gap: 2.5rem;
  }
  
  .charity-hero-main-title {
    font-size: 3rem;
  }
  
  .charity-hero-title-accent {
    font-size: 2rem;
  }
}

@media (max-width: 1200px) {
  .charity-hero-container {
    gap: 2rem;
    grid-template-columns: 1fr 1.3fr 0.7fr;
  }
  
  .charity-hero-main-title {
    font-size: 2.75rem;
  }
  
  .charity-hero-title-accent {
    font-size: 1.9rem;
  }
}

@media (max-width: 1024px) {
  .charity-hero-premium {
    min-height: auto;
    padding: 1.5rem 0 2rem;
  }
  
  .charity-hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .charity-hero-gallery-section {
    order: -1;
  }
  
  .charity-hero-trust-indicator {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .charity-hero-action-group {
    justify-content: center;
  }
  
  .charity-hero-countries-showcase {
    max-width: 400px;
    margin: 0 auto;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .charity-hero-premium {
    padding: 1rem 0 1.5rem;
  }
  
  .charity-hero-container {
    padding: 0 1rem;
    gap: 2rem;
    min-height: auto;
  }
  
  .charity-hero-main-title {
    font-size: 2.25rem;
  }
  
  .charity-hero-title-accent {
    font-size: 1.6rem;
  }
  
  .charity-hero-description-wrapper {
    height: 70px;
  }
  
  .charity-hero-description-text {
    font-size: 0.9rem;
    min-height: 70px;
  }
  
  .charity-hero-action-group {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .charity-hero-btn-premium {
    width: 100%;
    max-width: 300px;
  }
  
  .charity-hero-gallery-container {
    aspect-ratio: 1.3/1;
  }
  
  .charity-hero-countries-showcase {
    height: 280px;
    padding: 1.25rem;
  }
  
  .charity-hero-country-visual {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .charity-hero-main-title {
    font-size: 2rem;
  }
  
  .charity-hero-title-accent {
    font-size: 1.4rem;
  }
  
  .charity-hero-description-wrapper {
    height: 60px;
  }
  
  .charity-hero-description-text {
    font-size: 0.85rem;
    min-height: 60px;
  }
  
  .charity-hero-btn-surface {
    padding: 0.9rem 1.75rem;
    font-size: 0.9rem;
    min-width: 140px;
  }
}

/* Animation adjustments */
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.02); }
}

/* Button effects - keep existing */
.charity-hero-btn-primary .charity-hero-btn-surface {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.charity-hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.charity-hero-btn-primary:hover .charity-hero-btn-surface {
  box-shadow: 0 0 50px rgba(76, 81, 191, 0.6), var(--shadow-elevated);
}

.charity-hero-btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.charity-hero-btn-primary:hover .charity-hero-btn-glow {
  left: 100%;
}

.charity-hero-btn-secondary .charity-hero-btn-surface {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(var(--blur-glass));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glass);
}

.charity-hero-btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
}

.charity-hero-btn-secondary:hover .charity-hero-btn-surface {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-elevated);
}

.charity-hero-btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Image container effects */
.charity-hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.charity-hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
  filter: brightness(0.95) contrast(1.1) saturate(1.1);
}

.charity-hero-project-showcase:hover .charity-hero-project-slide.active img {
  transform: scale(1.05);
}

.charity-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 81, 191, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.charity-hero-project-showcase:hover .charity-hero-image-overlay {
  opacity: 1;
}

/* Add these specific fixes to your existing CSS */

/* Fix for navigation dots positioning */
.charity-hero-gallery-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4/1;
}

.charity-hero-nav-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20; /* Increased z-index */
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.charity-hero-nav-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-quick);
}

.charity-hero-indicator-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: var(--transition-quick);
}

.charity-hero-nav-indicator:hover .charity-hero-indicator-core {
  background: rgba(255, 255, 255, 0.9);
  width: 10px;
  height: 10px;
}

.charity-hero-nav-indicator.active .charity-hero-indicator-core {
  background: var(--color-accent);
  width: 24px;
  height: 8px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(76, 81, 191, 0.6);
}

/* Fix for image zoom effect - smoother transition */
.charity-hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.charity-hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95) contrast(1.05);
}

/* Subtle zoom on hover */
.charity-hero-project-showcase:hover .charity-hero-image-container img {
  transform: scale(1.03); /* Reduced from 1.05 */
}

/* Fix for slide transitions */
.charity-hero-project-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.charity-hero-project-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Fix for badge icon */
.charity-hero-badge-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  position: relative;
  overflow: hidden;
}

.charity-hero-badge-icon i {
  font-size: 1.2rem;
  color: white;
  z-index: 1;
  position: relative;
}

/* Ensure Font Awesome icons are visible */
.charity-hero-badge-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
  z-index: 0;
}

/* Fix image overlay to prevent awkward zoom */
.charity-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(76, 81, 191, 0.1) 0%, 
    rgba(139, 92, 246, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.charity-hero-project-showcase:hover .charity-hero-image-overlay {
  opacity: 1;
}

/* Better shadow for gallery on hover */
.charity-hero-project-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-premium);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--blur-glass));
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(76, 81, 191, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.charity-hero-project-showcase:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 50px rgba(76, 81, 191, 0.2);
}

/* Ensure country text is visible */
.charity-hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #4c51bf 0%, #667eea 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.25rem;
  transition: all 0.3s ease;
  opacity: 1;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .charity-hero-title-accent {
    color: #667eea;
  }
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
  .charity-hero-nav-indicators {
    bottom: 1rem;
    padding: 0.4rem 0.8rem;
    gap: 0.5rem;
  }
  
  .charity-hero-nav-indicator {
    width: 8px;
    height: 8px;
    padding: 4px;
  }
  
  .charity-hero-indicator-core {
    width: 6px;
    height: 6px;
  }
  
  .charity-hero-nav-indicator.active .charity-hero-indicator-core {
    width: 20px;
    height: 6px;
  }
}

/* Simple mobile fix for Countries We Serve section */
@media (max-width: 768px) {
  .charity-hero-map-section {
    width: 100%;
    max-width: 100%;
  }
  
  .charity-hero-map-header {
    margin-bottom: 0.75rem;
  }
  
  .charity-hero-map-title {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .charity-hero-countries-showcase {
    height: 200px !important; /* Force the height */
    max-height: 200px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.75rem !important;
  }
  
  .charity-hero-country-view {
    padding: 0 !important;
  }
  
  .charity-hero-country-label {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .charity-hero-country-visual {
    height: 120px !important; /* Force smaller height */
    width: 100% !important;
  }
  
  .charity-hero-country-visual img {
    max-width: 80% !important;
    max-height: 80% !important;
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .charity-hero-countries-showcase {
    height: 160px !important;
    padding: 0.5rem !important;
  }
  
  .charity-hero-country-visual {
    height: 90px !important;
  }
  
  .charity-hero-country-label {
    font-size: 0.8rem !important;
  }
}