.sticky-sidebar {
    position: fixed;
    top: 20%;
    left: 20px;
    width: 400px;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 수평 중앙 정렬 */
    justify-content: flex-start; /* 세로로 상단 정렬 */
}

.sticky-sidebar ul {
    list-style: none;
    padding: 0;
}

.sticky-sidebar ul li {
    margin: 10px 0;
}

.sticky-sidebar ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s;
}

.sticky-sidebar ul li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.content-section {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-section h6 {
    font-weight: bold;
    font-size: 1.2rem;
}

.content-section p,
.content-section ul {
    font-size: 1rem
}

.content-section ul li {
    margin-bottom: 10px;
}

h5 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-8 {
    flex: 0 0 66.6667%;
}

.col-md-4 {
    flex: 0 0 33.3333%;
}

@media (max-width: 768px) {
    /* Sidebar for Mobile */
    .sticky-sidebar {
        position: static;
        width: 100%;
        top: auto;
        left: 0;
        padding: 10px;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 20px;
    }

    .sticky-sidebar ul li {
        text-align: center;
    }


    .content-section {
        padding: 10px;
        margin-bottom: 20px;
    }

    /* Layout for Mobile */
    .row {
        flex-direction: column;
    }

    .col-md-8, .col-md-4 {
        flex: 0 0 100%;
    }

    h5 {
        font-size: 1.5rem;
    }
}