.interview-main {
    text-align: center;
}

.interview-title {
    font-size: 2rem;
    color: #333;
}

.interview-subtitle {
    font-size: 1rem;
    color: #555;
    margin-top: -10px;
    margin-bottom: 40px;
}

.interview-toc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.toc-q {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8d6e63;
    margin-right: 20px;
}

.toc-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}
