:root {
    --primary-color: #d63031;
    --secondary-color: #6c757d;
    --dark-bg: #212529;
}

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

.navbar { box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/main-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.feature-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.feature-box {
    padding: 40px 20px;
    transition: transform 0.3s;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.feature-box:hover { transform: translateY(-10px); }

.price-section { background-color: #f8f9fa; padding: 80px 0; }
.price-table-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 300px;
}

.location-section { background-color: #fff; padding: 80px 0; }
.cta-section {
    background: linear-gradient(45deg, #d63031, #e17055);
    color: white;
    padding: 60px 0;
    text-align: center;
}
footer { background-color: var(--dark-bg); color: #aaa; padding: 40px 0; }

.table td, .table th { vertical-align: middle; font-size: 0.9rem; }

#loading-spinner { display: flex; justify-content: center; padding: 50px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { height: 80vh; }
    .table td, .table th { font-size: 0.8rem; padding: 0.5rem; }
}