@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
* {
  font-family: "Noto Sans KR", sans-serif !important;
}

div, dt, dd, ul, ol, li, fieldset, form, p, th, td, input, button, select {
  font-size: 15px;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: #f0f2f5;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  word-break: keep-all;
  min-height: 100vh;
  box-sizing: border-box;
}

.container {
  max-width: 500px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3 {
  color: #1a202c;
  font-weight: 700; /* Bold 유지 */
}

h1 {
  font-size: 2.3rem; /* 약 15% 크게 (기존 2.25rem -> 2.3rem) */
  text-align: center;
}

h2 {
  font-size: 1.8rem; /* 약 15% 크게 (기존 1.625rem -> 1.8rem) */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.55rem; /* 약 15% 크게 (기존 1.375rem -> 1.55rem) */
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 700; /* Bold 유지 */
  margin-bottom: 0.5rem;
  color: #4a5568;
  text-align: left;
}

select {
  width: 100%;
  padding: 1rem 0.75rem; /* 패딩 값 증가 */
  border: 1px solid #cbd5e0;
  border-radius: 0.5rem;
  background-color: #edf2f7;
  font-size: 1rem;
  color: #2d3748;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5em 1.5em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

button {
  width: 100%;
  padding: 1.2rem; /* 높이 값 증가 */
  background-color: #1436B9; /* 버튼 컬러 변경 */
  color: #FFFFFF; /* 텍스트 컬러 변경 */
  font-weight: 700;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(20, 54, 185, 0.3);
}

button:hover {
  background-color: #1a42e0;
}

.hidden {
  display: none;
}

#result-page {
  padding: 20px 20px 0;
}

.result-section {
  background-color: #f7fafc;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.result-section {
  padding: 0 20px;
}

.result-section:last-of-type {
  padding-bottom: 20px;
}

.tip-box {
  background-color: #e0f2fe;
  border-left: 5px solid #38bdf8;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  color: #0c4a6e;
}

.cta-button {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  background-color: #38bdf8;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background-color: #0ea5e9;
}

.cta-button:last-of-type {
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.info-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-icon {
  font-size: 2.5rem; /* Larger emoji/icon */
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}

.card-title {
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  margin-bottom: 0.5rem;
  text-align: center;
  color: #2d3748;
}

.card-description {
  font-size: 0.9375rem; /* text-sm slightly larger */
  color: #4a5568;
  text-align: center;
  line-height: 1.5;
}

.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #718096;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.reset-button {
  background-color: #555555; /* 버튼 컬러 변경 */
  color: #FFFFFF; /* 텍스트 컬러 변경 */
  margin-top: 1.5rem;
}

.reset-button:hover {
  background-color: #444444;
}

/* General paragraph alignment */
.text-left-p {
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.6; /* 가독성을 위한 줄 간격 */
}

.footer a {
  text-decoration: underline; /* 밑줄 추가 */
  color: #4c51bf; /* 링크 색상 */
}

.footer a:hover {
  color: #5a61d3;
}

/* NEW: Comparison List Styles */
.comparison-list .comparison-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comparison-list .item-title {
  font-weight: bold;
  font-size: 1.125rem;
  color: #2d3748;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comparison-list .item-title .icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #4f46e5;
}

.comparison-list .account-info {
  background-color: #f8faff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e7ff;
}

.comparison-list .account-info p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.9375rem;
  color: #4a5568;
}

.comparison-list .account-info strong {
  color: #1a202c;
}

.main-image {
  pointer-events: none;
  user-select: none;
}

.main-image-wrap {
  position: relative;
  overflow: hidden;
}

.main-image-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.main-text {
  text-align: left;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
}
.main-text h1 {
  color: inherit;
  font-size: 28px;
  text-align: inherit;
}
.main-text .desc {
  font-size: 18px;
}
.main-text .text-group {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: space-between;
}
.main-text .text {
  display: flex;
  flex-flow: row wrap;
  align-content: center;
}
.main-text img {
  margin-right: 7px;
}

.inner {
  padding: 20px;
}

.inner ~ div .inner {
  padding-top: 0;
}

.group {
  border-bottom: 8px solid #EFEFEF;
}

.input-group .inner {
  padding: 0 20px;
}

.sub-title {
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}

.item-title {
  text-align: center;
}

.comparison-list .item-title {
  justify-content: center;
}

/*# sourceMappingURL=style.css.map */
