body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f7f9fc;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 60px auto;
  background: #ffffff;
  padding: 70px 90px;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  box-sizing: border-box;
  min-height: 900px;
  max-height: 900px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  margin-bottom: 60px;
}

.logo-bar img {
  transition: transform 0.2s ease;
  cursor: default;
}

.logo-bar img:hover {
  transform: scale(1.05);
}

.logo-left img {
  height: 60px;
  object-fit: contain;
}

.logo-right {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.logo-right img[alt*="분당서울대학교병원"] { height: 26px; margin-top: -3px; }
.logo-right img[alt*="의료인공지능센터"] { height: 28px; }
.logo-right img[alt*="SickGPT"] { height: 30px; }

button {
  background-color: #1a73e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover { background-color: #155ab6; }

h1{
  font-size: 28px;
  font-weight: 700;
  color: #0d47a1;
  text-align: center;
  margin: 0 0 40px;
}

.subtitle {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 35px;
}

p.en {
  color: #555;
  font-style: italic;
  font-size: 14px;
  text-align: center;
}