    body {
      margin: 0;
      font-family: 'Noto Sans KR', sans-serif;
      background-color: #fff;
    }
 p{
  font-family: 'Noto Sans KR', sans-serif;
  }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .top-bar {
      background-color: #0017c1;
      color: white;
      padding: 10px 0;
    }

    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 50px;
      padding: 0 12px;
    }

    .title-container {
      text-align: center;
      margin: 30px 0;
    }

    .main-title {
      font-size: 60px;
      font-weight: bold;
      color: #0017c1;
      margin: 0px 0;
    }

    .sub-title {
      font-size: 40px;
      font-weight: bold;
      color: #0017c1;
      margin: 0px 0;
    }

    .divider {
      height: 1.5px;
      background-color: #0017c1;
      margin: 20px auto;
      width: 100%;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-bottom: 30px;
    }

    .nav-links a {
      position: relative;
      color: black;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      padding-bottom: 4px;
      transition: all 0.3s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background-color: #0017c1;
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .visit-section {
      background-color: #0017c1;
      color: white;
      padding: 40px 20px;
      text-align: center;
      margin: 80px 0;
    }

    .visit-section h2 {
      font-size: 43px;
      margin-bottom: 20px;
    }

    .visit-section p {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .visit-section img {
      max-width: 100%;
      height: 350px;
      margin: 20px 0;
    }

    .accordion {
      background-color: #f1f1f1;
      color: #0017c1;
      cursor: pointer;
      padding: 16px;
      margin: 12px 0;
      width: 100%;
      border: none;
      border-radius: 8px;
      text-align: left;
      font-size: 16px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      position: relative;
    }

    .accordion:hover {
      background-color: #e0ebff;
    }

    .accordion .accordion-icon {
      position: absolute;
      right: 20px;
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .panel {
      padding: 0 16px 16px;
      background-color: #fff;
      display: none;
      border-left: 4px solid #0017c1;
      margin-bottom: 8px;
    }
    .panel p {
	text-align: left;
	}
    .panel ul {
      padding-left: 18px;
    }
    .notice-section {
      background-color: #0017c1;
      padding: 60px 20px;
      color: white;
      margin-top: 80px;
    }

    .notice-title {
      text-align: center;
      font-size: 43px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .notice-cards {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .notice-card {
      background-color: white;
      color: black;
      border-radius: 12px;
      padding: 20px;
      transition: transform 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .notice-card:hover {
      transform: scale(1.05);
      cursor: pointer;
    }

    .notice-card h3 {
      font-size: 25px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .notice-warning h3 {
      text-align: center;
      color: #eab308;
    }

    .notice-warning p {
      text-align: center;
	  font-size: 15px;
    }

    .notice-warning ul {
      text-align: center;
    }

    footer {
      background-color: #0017c1;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 14px;
      margin-top: 50px;
    }

    html, body {
      height: 100%;
    }
	/* 플로팅 광고 배너 스타일 */
.floating-ad-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 160px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 999;
    /* 모바일에서는 기본적으로 숨김 */
    display: none; 
}

/* 데스크톱에서만 보이도록 미디어 쿼리 설정 */
@media (min-width: 1024px) {
    .floating-ad-container {
        display: block; /* 1024px 이상에서 보임 */
    }
    /* main-container 마진 조정 (광고 배너 겹치지 않게) */
    .main-container {
        margin-right: calc(auto + 180px); /* 960px + (20px 마진 + 160px 배너 + 20px 마진) */
    }
}

/* 광고 배너 내부 스타일 */
.floating-ad-container .ad-item {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}
.floating-ad-container .ad-item:last-child {
    border-bottom: none;
}
.floating-ad-container .ad-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 5px;
}
.floating-ad-container .ad-item p {
    font-size: 0.75rem;
    line-height: 1.3;
    color: #666;
    margin-bottom: 0;
}
.floating-ad-container .ad-item a {
    color: #e60012;
    text-decoration: none;
    font-weight: 600;
}
.floating-ad-container .ad-item a:hover {
    text-decoration: underline;
}
.floating-ad-container .ad-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

    @media (max-width: 768px) {
      .notice-card {
        width: 100%;
      }
      .container {
        padding: 0;
      }
    }