.card-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.card {
  background-color: #1a1a1a;
  border-radius: 0.9375rem;        
  padding: 2rem;
  width: 30rem;             
  box-shadow: 0 0 0.625rem #333;   
  border: 0.0625rem solid #333; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 7rem;
}

.card h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;        
}

.link-box {
  display: flex;
  align-items: center;
  background-color: #111;
  padding: 1rem 1.2rem;
  width: 90%;
  font-size: 1.2rem;
  margin-bottom: 0.4375rem;        
  border-radius: 0.5rem;          
  color: white;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.link-box i {
  margin-right: 0.75rem;        
  min-width: 1.5rem;             
  text-align: center;
  font-size: 1.3rem;
}

.link-box:hover {
  background-color: #333;
  transform: scale(1.03);
}

.link-box.disabled {
  pointer-events: none;
  background-color: #222;
  opacity: 0.8;
}

.full-width {
  font-family: 'Segoe UI', sans-serif;
  width: 62rem;                
  margin: 0 auto 2rem auto;
}

.map-embed {
  width: 100%;
  height: 25rem;                  
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0.625rem;       
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.full-width {
  animation: fadeSlideUp 0.8s ease-out forwards;
  opacity: 0;
}