.intro-section {
    background: url('/images/intro-background.jpg') no-repeat center center;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: 100px;
    text-align: left;
}

.text-box h1,
.text-box h2,
.text-box p {
    color: #fff;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
}

.shortcut-container {
    margin-top: -110px; /* 이미지에 살짝 겹치도록 위로 당김 */
    z-index: 10;
    position: relative;
}

.shortcut-box {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 24px;
    min-width: 250px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.shortcut-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
