:root {
    --primary-color: #005A9C; /* Gyeongnam Blue */
    --secondary-color: #00A651; /* Gyeongnam Green */
    --accent-color: #FFC107;
    --text-color: #333333;
    --bg-color: #f8f9fa;
    --surface-color: #ffffff;
    --border-color: #e0e0e0;

    --font-family: 'Noto Sans KR', sans-serif;
    --header-height: 70px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding-top: var(--header-height);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #004a80;
    transform: translateY(-2px);
}

/* Page sections styling */
section {
    background-color: var(--surface-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Home Hero Section */
.home-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.home-hero .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.home-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-hero p {
    font-size: 1.2rem;
    color: #555;
}
