/* ---------- 공통 기본값 ---------- */
section.container.section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'Poppins', 'Noto Sans KR', sans-serif;
    font-weight: 300;
    color: #000;

    margin: 0;
    min-height:20vh; /* 화면 중앙 정렬을 위한 높이 */
    text-align: center;
    margin-left: 80px;
}

/* ---------- 메뉴 ---------- */
section.container.section-title .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

/* ---------- 메뉴 버튼 스타일 ---------- */
section.container.section-title .menu a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 170px;

    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;

    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* ---------- 호버 효과 ---------- */
section.container.section-title .menu a:hover {
    border-color: #000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}
