/* 메인 페이지 스타일 */

/* Hero 섹션 그라데이션 */
.bg-gradient-to-br {
    background: linear-gradient(to bottom right, #F5F5F0, #FFFFFF);
}

/* 카드 호버 효과 */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* 부드러운 스크롤 */
html {
    scroll-behavior: smooth;
}

/* 섹션 간격 조정 */
section {
    scroll-margin-top: 100px;
}

