/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f7fa;
  color: #333;
}

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Location Section */
.location-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #e8ecef 100%);
}

/* Location Content */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Location Text */
.location-text {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.location-text h1 {
  font-size: 2.5rem;
  color: #1a3c6d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-text h1 i {
  color: #e63946;
  animation: pulse 2s infinite;
}

.location-text .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Info Block */
.info-block {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.info-block:nth-child(2) {
  animation-delay: 0.5s;
}

.info-block:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.info-block h3 {
  font-size: 1.5rem;
  color: #1a3c6d;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Location Map */
.location-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.7s;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.3s ease;
}

.location-map:hover iframe {
  transform: scale(1.02);
}

/* Keyframe Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
    gap: 20px;
  }

  .location-text h1 {
    font-size: 2rem;
  }

  .location-map {
    height: 300px;
  }
}