.detail-page {
    padding-top: 120px;
  }
  
  .detail-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .detail-inner h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .detail-inner p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
  }
  
  .gallery-side-by-side {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .gallery-side-by-side img {
    width: 48%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px #00000020;
    transition: transform 0.3s ease;
    object-fit: cover;
  }
  
  .gallery-side-by-side img:hover {
    transform: scale(1.01);
  }

  .place-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .place-address {
    font-size: 18px;
    font-weight: 500;
  }
  
  .btn-link {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .btn-link:hover {
    background-color: #444;
  }
  
  
  @media (max-width: 768px) {
    .gallery-side-by-side img {
      width: 100%;
    }
  }
  
  .map-container {
    margin-top: 40px;
  }
  
  .map-container h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
  }
  
w  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
  }
  
  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }
  .delay-3 { animation-delay: 0.9s; }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  