/* index.html 전용 스타일 */
body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    background: linear-gradient(180deg, #f0fdf4 0%, #f7fef9 15%, #fafefb 30%, #fdfefd 50%, #ffffff 100%);
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-height: 320px;
    height: auto;
    filter: drop-shadow(2px 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.03);
}