:root {
    --primary-color: #ff4d4d;
    --secondary-color: #333;
    --light-gray: #f8f9fa;
  }
  
  body {
    font-family: "Poppins", sans-serif;
  }
  
  .location-section {
    padding: 80px 0;
    background-color: var(--light-gray);
  }
  
  .location-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .location-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
  }
  
  .info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  .info-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .info-item:hover {
    background: #f8f9fa;
    transform: translateX(10px);
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .info-icon i {
    color: white;
    font-size: 1.2rem;
  }
  
  .info-content {
    flex-grow: 1;
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
  }
  
  .info-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }
  
  .info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .info-content a:hover {
    color: #ff6b6b;
  }
  
  .map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    .location-section {
      padding: 40px 0;
    }
  
    .map-container {
      margin-top: 30px;
      min-height: 400px;
    }
  
    .info-item:hover {
      transform: none;
    }
  }
  