* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
  }
  
  #root {
    width: 100%;
    min-height: 100vh;
  }
  
  .app-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* 이미지 갤러리 스타일 */
  .image-gallery {
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    overflow-y: auto;
  }
  
  .image-item {
    width: 100%;
    max-width: 900px; /* 데스크탑에서의 최대 너비 */
    margin-bottom: 0px;
    overflow: hidden;
    border-radius: 4px;
    /* 세로로 긴 직사각형 비율 유지 */
    aspect-ratio: 3/4; /* 세로로 긴 직사각형 비율 */
  }
  
  .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  /* 문의하기 버튼 스타일 */
  .contact-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
    margin-bottom: 100px;
  }
  
  .contact-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3366cc;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
  }
  
  .contact-button:hover {
    background-color: #254e99;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-button:active {
    transform: translateY(0);
  }
  
  /* 반응형 스타일 */
  @media (max-width: 768px) {
    .image-item {
      max-width: 95%; /* 모바일에서는 화면 너비의 95%로 설정 */
    }
  
    .contact-button {
      padding: 12px 30px;
      font-size: 16px;
      min-width: 180px;
    }
  }
  
  @media (max-width: 480px) {
    .image-item {
      max-width: 98%;
    }
  }