:root{
  --bg: #ffffff;
  --text: #222222;
  --muted: #666666;
  --brand: #004098;
  --brand-2: #1a73e8;
  --accent: #f57c00;
  --border: #e0e0e0;
  --radius: 10px;
}

*{box-sizing:border-box}

body{
  margin:0; 
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:var(--brand)}

.wrap{max-width:1180px;margin:0 auto;padding:28px}

/* HERO */        
.hero p{font-size:24px;max-width:1024px;margin:50px auto;color:#000}
.point { color:var(--brand); font-weight:bold }

/* SECTION */
section{margin-top:48px}
.section-head{ margin-top:24px; margin-bottom:28px;border-left:4px solid var(--brand);padding-left:12px}    
.section-head h2{margin:0;font-size:26px; font-weight:bold; color:var(--brand); margin-bottom:5px;}
.section-head .desc{color:var(--muted)}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:10px}
.card{border:1px solid var(--border);border-radius:var(--radius);padding:20px;transition:.2s; margin-bottom:5px !important;}
.card:hover{box-shadow:0 4px 12px rgba(0,0,0,.1)}
.card h3{margin:6px 0 8px;font-size:18px; font-weight:700; color:var(--brand)}
.card p{margin:0;color:var(--muted);font-size:14px}

/* GOALS */
.goals{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:8px}
.goal{border:1px solid var(--border);border-radius:var(--radius);padding:16px;background:#fafafa}

/* ORG CHART */
.diagram-wrap{overflow:auto;border:1px solid var(--border);border-radius:var(--radius);padding:16px;background:#fafafa}
.node{fill:#e9efff;stroke:#004098;stroke-width:1.2}
.node-title{font:700 14px "Pretendard";fill:#004098}
.node-sub{font:500 12px "Pretendard";fill:#444}
.edge{stroke:#1a73e8;stroke-width:1.4;opacity:.7}

.circle-group{display:flex;justify-content:center;gap:24px;flex-wrap:wrap; margin-bottom:34px;}
.circle{width:120px;height:120px;border-radius:50%;background:var(--brand);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:16px;text-align:center;padding:10px}

/* TABLE STYLES */
.circle-table{margin-top:16px}
.info-table{width:100%; border-collapse:collapse; font-size:14px}
.info-table thead tr{background:#e9efff; color:var(--brand)}
.info-table th{padding:12px; border:1px solid var(--border); text-align:center; width:160px}
.info-table th:nth-child(2){width:auto}
.info-table th:nth-child(3){width:260px}
.info-table td{padding:12px; border:1px solid var(--border)}
.info-table td:first-child{font-weight:600; color:var(--brand); text-align:center;}

/* ORGANIZATION CONTACT TABLE */
.org-contact-table{margin-top:16px}
.org-table{width:100%; border-collapse:collapse; font-size:14px}
.org-table thead tr{background:#e9efff; color:var(--brand)}
.org-table th{padding:12px; border:1px solid var(--border); text-align:center; font-weight:700}
.org-table td{padding:12px; border:1px solid var(--border); text-align:center; vertical-align:middle}
.org-table td:first-child{font-weight:600; color:var(--brand)}
.org-table td:nth-child(2){text-align:left; padding-left:16px}

/* ORGANIZATION CHART */
.org-chart {
  margin: 32px 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.org-level-1 {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.org-level-2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.org-level-3 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.org-box {
  background: #fff;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform .2s;
  min-width: 180px;
}

.org-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.org-box.director {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: var(--brand);
}

.org-box.manager {
  background: linear-gradient(135deg, #e9efff, #f0f4ff);
  border-color: var(--brand-2);
}

.org-box.team {
  background: #fff;
  border-color: var(--border);
}

.org-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
}

.org-box p {
  margin: 4px 0;
  font-size: 14px;
  color: inherit;
}

.specialized-areas {
  margin-top: 40px;
  text-align: center;
}

.specialized-areas h3 {
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 20px;
}

/* CONTACT SECTION */
.contact-section{margin-top:64px}
.contact-info {
  margin-bottom: 32px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform .2s;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 8px;
}

.contact-details p {
  margin: 8px 0;
  font-size: 14px;
}

.contact-details-general {
  background: #f8f9fa;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.general-info h3 {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.info-item strong {
  display: block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

.contact-highlight{background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#fff;padding:40px;border-radius:var(--radius);text-align:center;box-shadow:0 6px 20px rgba(0,0,0,.15)}
.contact-highlight h3{font-size:24px;margin:0 0 12px}
.contact-highlight p{font-size:16px;margin:0 0 24px}
.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-btn{background:#fff;color:var(--brand);font-weight:700;padding:14px 28px;border-radius:8px;text-decoration:none;display:inline-block;box-shadow:0 4px 10px rgba(0,0,0,.15);transition:.2s}
.contact-btn:hover{transform:translateY(-2px);box-shadow:0 6px 15px rgba(0,0,0,.2)}
