.home-page {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.home-header {
  text-align: center;
  margin-bottom: 3rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-header-content {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.home-header-logo {
  width: 60px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease, opacity 0.3s ease;
  -o-transition: -o-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.home-header-logo:hover {
  opacity: 1;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

main[role="main"] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.home-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.home-header h1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: -webkit-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  background: -moz-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  background: -o-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.05) 60%, transparent 100%);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  z-index: -1;
  -webkit-animation: smokeBackground 4s ease-in-out infinite;
  -moz-animation: smokeBackground 4s ease-in-out infinite;
  -o-animation: smokeBackground 4s ease-in-out infinite;
  animation: smokeBackground 4s ease-in-out infinite;
}

.home-header h1::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120%;
  background: -webkit-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  background: -moz-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  background: -o-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
  -webkit-filter: blur(30px);
  filter: blur(30px);
  z-index: -1;
  -webkit-animation: smokeBackground2 5s ease-in-out infinite;
  -moz-animation: smokeBackground2 5s ease-in-out infinite;
  -o-animation: smokeBackground2 5s ease-in-out infinite;
  animation: smokeBackground2 5s ease-in-out infinite;
}

@-webkit-keyframes smokeBackground {
  0%, 100% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.2) rotate(-2deg);
    transform: translate(-50%, -50%) scale(1.2) rotate(-2deg);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(1deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(1deg);
  }
}

@keyframes smokeBackground {
  0%, 100% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  25% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(2deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.2) rotate(-2deg);
    transform: translate(-50%, -50%) scale(1.2) rotate(-2deg);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(1deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(1deg);
  }
}

@-webkit-keyframes smokeBackground2 {
  0%, 100% {
    opacity: 0.4;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1.15) rotate(-3deg);
    transform: translate(-50%, -50%) scale(1.15) rotate(-3deg);
  }
  66% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(3deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(3deg);
  }
}

@keyframes smokeBackground2 {
  0%, 100% {
    opacity: 0.4;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.6;
    -webkit-transform: translate(-50%, -50%) scale(1.15) rotate(-3deg);
    transform: translate(-50%, -50%) scale(1.15) rotate(-3deg);
  }
  66% {
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%) scale(1.1) rotate(3deg);
    transform: translate(-50%, -50%) scale(1.1) rotate(3deg);
  }
}


.home-header p {
  font-size: 1.2rem;
  color: #b0b0b0;
}

.maps-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding-bottom: 100px;
}

.map-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.map-card:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.map-card-empty {
  cursor: default;
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  pointer-events: none;
  position: relative;
}

.map-card-empty::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.map-card-empty:hover {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.map-card-empty .map-card-image {
  pointer-events: none;
}

.map-card-empty-badge {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.map-card-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}

.map-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease, opacity 0.3s ease;
  -o-transition: -o-transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.map-card:hover .map-card-image img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 1;
}

.map-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.map-card-logo {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.map-logo-image {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.map-card:hover .map-logo-image {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.map-logo-text {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  max-width: 130px;
  display: block;
  overflow-wrap: break-word;
}

.map-card-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(70%, rgba(0, 0, 0, 0.4)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.map-card-smokes-count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.smokes-count-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4ecdc4;
  line-height: 1;
}

.map-card-empty .smokes-count-number {
  color: rgba(255, 255, 255, 0.4);
}

.map-card-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.home-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  text-align: center;
  background: rgba(10, 10, 10, 0.95);
  /* Fallback для браузеров без поддержки backdrop-filter */
  background: rgba(10, 10, 10, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.donate-button {
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  /* Fallback для браузеров без поддержки backdrop-filter */
  background: rgba(20, 20, 20, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
}

.donate-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 255, 255, 0.1)), to(transparent));
  background: -webkit-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background: -moz-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background: -o-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  -webkit-transition: left 0.5s ease;
  -moz-transition: left 0.5s ease;
  -o-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.donate-button:hover::before {
  left: 100%;
}

.donate-button:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.05);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.donate-button:active {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

/* Paypalych Modal */
.paypalych-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.paypalych-modal-content {
  background-color: #1a1a1a;
  margin: auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  -webkit-animation: fadeIn 0.3s ease-out;
  -moz-animation: fadeIn 0.3s ease-out;
  -o-animation: fadeIn 0.3s ease-out;
  animation: fadeIn 0.3s ease-out;
}

.paypalych-modal-close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  border: none;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.paypalych-modal-close:hover,
.paypalych-modal-close:focus {
  color: #4ecdc4;
}

.paypalych-modal-content iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .paypalych-modal-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .paypalych-modal-content iframe {
    min-height: 500px;
  }
}

.donate-button i.fa-heart {
  color: #ff6b9d;
  font-size: 1.2rem;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite;
  -moz-animation: heartbeat 1.5s ease-in-out infinite;
  -o-animation: heartbeat 1.5s ease-in-out infinite;
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 30% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20%, 40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  60% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  10%, 30% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  20%, 40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
  }
  60% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .home-page {
    padding: 1rem;
    padding-bottom: 100px;
  }

  .home-header h1 {
    font-size: 2rem;
  }

  .maps-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 120px;
  }

  .map-card-image {
    height: 280px;
  }

  .map-logo-image {
    max-width: 150px;
    max-height: 150px;
  }

  .donate-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .home-footer {
    padding: 1rem;
  }
}

