/* Hero Section Component */
.hero-section {
    position: relative;
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 74px;
}

.hero-section__title {
    color: var(--color-white);
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-section {
        height: 420px;
        margin-top: 4rem;
    }
    
    .hero-section__title {
        font-size: 2.25rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 260px;
        margin-top: 4rem;
    }
    
    .hero-section__title {
        font-size: 1.75rem !important;
    }
}

/* 버튼 컴포넌트 */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--primary {
    background: var(--color-primary);
    color: white;
}

/* 카드 컴포넌트 */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

