/* style.css */
/* 수강료 안내 스타일링 */
.tuition-plan {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tuition-plan h3 {
    margin-top: 10px;
}

.tuition-plan p {
    color: #777;
}

/* 호버 시 스타일 변경 */
.tuition-plan:hover {
    transform: scale(1.05); /* 확대 효과 */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* 그림자 효과 */
}

/* "세부 정보" 버튼 스타일링 */
.show-details {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.show-details:hover {
    background-color: #ff9900; /* 호버 시 색상 변경 */
}

/* 초기에 세부 정보 숨김 */
.tuition-details {
    display: none;
    margin-top: 10px;
}

.tuition-details p {
    color: #333;
    margin: 5px 0;
}
