:root {
    --primary-blue: #0076FF;
    --dark-blue: #004a99;
    --accent-orange: #fbb03b;
    --bg-gray: #f8fafc;
    --text-color: #333;
}

body { font-family: "Helvetica Neue", Arial, "Hiragino Sans", sans-serif; margin: 0; color: var(--text-color); line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

header { background: #fff; border-bottom: 2px solid var(--primary-blue); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 1.4rem; font-weight: bold; color: var(--primary-blue); text-decoration: none; }
nav ul { display: flex; list-style: none; gap: 20px; margin: 0; }
nav a { text-decoration: none; color: #444; font-size: 0.9rem; font-weight: bold; }
nav a:hover { color: var(--primary-blue); }

.sub-hero { background: var(--dark-blue); color: white; padding: 60px 0; text-align: center; }
section { padding: 80px 0; }
h2 { text-align: center; color: var(--dark-blue); margin-bottom: 40px; position: relative; padding-bottom: 10px; }
h2::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: var(--accent-orange); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card { background: #fff; padding: 25px; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.btn { display: inline-block; background: var(--primary-blue); color: white; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-top: 20px; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table th, .info-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; }
.info-table th { width: 30%; color: #666; }

footer { background: #222; color: #999; text-align: center; padding: 30px 0; font-size: 0.8rem; margin-top: 50px; }