/* 서브 컨텐츠 상단 하이라이트 박스 */
.hero-section {
    background: #ebf9ff;
    border-radius: 24px;
    padding: 48px 0px;
    text-align: center;
}

.hero-title {
    color: #38a1db;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #f0831f;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: -16px;
}
@media (max-width: 768px) {
    .hero-section { padding: 48px 24px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 16px; }
    .section-title { font-size: 30px; }
}





/************************************************
Footer S
************************************************/
#footer {
   min-height: 260px;
   background-color: #f7f7f7;
}


@media (max-width: 1200px) {
   #footer .top {
      width: 50%;
   }
}
@media (max-width: 992px) {
   #footer .top {
      width: 70%;
   }
}
@media (max-width: 768px) {
   #footer .top {
      width: 100%;
   }
}
/************************************************
Footer E
************************************************/