*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background-color: #E5E8EB;
  color: #191F28;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

ul, ol {
  list-style: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

#app-frame {
  max-width: 640px;
  margin: 0 auto;
  background-color: #ffffff;
  height: 100vh;
  height: 100dvh;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 640px) {
  #app-frame {
    box-shadow: none;
  }
}
.page-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.page-inner {
  padding: 16px;
  min-height: 100%;
  animation: fadeInUp 0.4s ease-out both;
}

.safe-bottom {
  padding-bottom: max(env(safe-area-inset-bottom), 12px);
}

@media (min-width: 640px) {
  .safe-bottom {
    padding-bottom: max(env(safe-area-inset-bottom), 24px);
  }
}
.footer-button {
  flex-shrink: 0;
  border-top: 1px solid #F3F4F6;
  padding: 6px 16px 16px;
  background-color: #ffffff;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

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

.text-left {
  text-align: left;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mr-2 {
  margin-right: 8px;
}

.px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.w-full {
  width: 100%;
}

.hidden {
  display: none;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.whitespace-pre-line {
  white-space: pre-line;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseSoft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out both;
}

.animate-scale-up {
  animation: scaleUp 0.5s ease-out both;
}

.animate-slide-up {
  animation: slideUp 0.3s ease-out both;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.toss-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: #3182F6;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toss-button:active {
  transform: scale(0.95);
}
.toss-button:disabled {
  background-color: #D1D5DB;
  cursor: not-allowed;
}
.toss-button:disabled:active {
  transform: none;
}
.toss-button.btn-red {
  background-color: #EF4444;
}
.toss-button.btn-red:hover {
  background-color: #DC2626;
}
.toss-button.btn-grey {
  background-color: #F3F4F6;
  color: #374151;
}
.toss-button.btn-grey:hover {
  background-color: #E5E7EB;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 14px 24px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  background-color: #ffffff;
  border: 2px solid #D1D5DB;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background-color: #F9FAFB;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #F9FAFB;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.2s ease-out;
}
.service-card:active {
  transform: scale(0.98);
  background-color: #F9FAFB;
}

.info-card {
  padding: 16px;
  border-radius: 16px;
}
.info-card.card-blue {
  background-color: #EFF6FF;
}
.info-card.card-red {
  background-color: #FEF2F2;
}
.info-card.card-green {
  background-color: #F0FDF4;
}
.info-card.card-grey {
  background-color: #F9FAFB;
}
.info-card.card-white {
  background-color: #ffffff;
  border: 1px solid #F3F4F6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.icon-box.icon-sm {
  width: 40px;
  height: 40px;
}
.icon-box.icon-md {
  width: 48px;
  height: 48px;
}
.icon-box.icon-lg {
  width: 56px;
  height: 56px;
}
.icon-box.icon-xl {
  width: 80px;
  height: 80px;
  border-radius: 24px;
}
.icon-box.bg-blue {
  background-color: #EFF6FF;
}
.icon-box.bg-green {
  background-color: #F0FDF4;
}
.icon-box.bg-red {
  background-color: #FEF2F2;
}

.form-group {
  background-color: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: border-color 0.2s ease;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  font-size: 16px;
  color: #111827;
  border: none;
  background: transparent;
  padding: 0;
}
.form-group input::placeholder, .form-group textarea::placeholder, .form-group select::placeholder {
  color: #9CA3AF;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group .field-error {
  display: block;
  font-size: 13px;
  color: #EF4444;
  margin-top: 6px;
  padding: 0 2px;
  font-weight: 400;
  line-height: 1.4;
}
.form-group.has-error {
  border-color: #EF4444;
}
.form-group.has-error label {
  color: #EF4444;
}

.form-input-lg {
  width: 100%;
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  color: #111827;
  transition: border-color 0.2s ease;
}
.form-input-lg:focus {
  border-color: #3182F6;
}
.form-input-lg.has-error {
  border-color: #EF4444;
}
.form-input-lg.has-error:focus {
  border-color: #EF4444;
}
.form-input-lg::placeholder {
  color: #9CA3AF;
}
.form-input-lg + .field-error {
  display: block;
  font-size: 13px;
  color: #EF4444;
  margin-top: 6px;
  padding: 0 2px;
  font-weight: 400;
  line-height: 1.4;
}

.type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.type-toggle .type-option {
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s ease;
}
.type-toggle .type-option.active {
  border-color: #3182F6;
  background-color: #E8F3FF;
  color: #3182F6;
}

.radio-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.radio-circle.checked {
  background-color: #22C55E;
  border-color: #22C55E;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.terms-checkbox.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #F3F4F6;
}
.terms-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #3182F6;
}
.terms-checkbox .checkbox-label {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.app-header {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.app-header .header-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
.app-header .header-back:hover {
  background-color: #F3F4F6;
}
.app-header .header-back svg {
  width: 20px;
  height: 20px;
  color: #374151;
}
.app-header .header-title {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-right: 32px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.badge.badge-blue {
  background-color: #DBEAFE;
  color: #2563EB;
}
.badge.badge-green {
  background-color: rgba(240, 253, 244, 0.8);
  color: #15803D;
}
.badge.badge-red {
  background-color: #FEE2E2;
  color: #DC2626;
}
.badge.badge-grey {
  background-color: #F3F4F6;
  color: #4B5563;
}

.landing-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.landing-page .landing-content {
  text-align: center;
  padding: 16px 0;
}
.landing-page .landing-badge {
  display: inline-block;
  background-color: #EFF6FF;
  color: #3182F6;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  margin-bottom: 12px;
}
.landing-page .landing-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 12px;
  padding: 0 8px;
}
.landing-page .landing-subtitle {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  padding: 0 8px;
  margin-bottom: 24px;
}
.landing-page .landing-icons {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.landing-page .landing-icons .icons-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(239, 246, 255, 0.5);
  border-radius: 9999px;
  filter: blur(48px);
  transform: scale(0.75);
}
.landing-page .landing-icons .icons-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.landing-page .landing-icons .icon-item {
  background-color: #ffffff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.landing-page .landing-icons .icon-item:nth-child(2) {
  margin-top: 16px;
}
.landing-page .landing-icons .icon-item:nth-child(3) {
  grid-column: span 2;
  width: 66%;
  margin: -16px auto 0;
}
.landing-page .landing-icons .icon-item .icon-label {
  font-size: 14px;
  font-weight: 700;
  color: #1F2937;
}

.menu-page .menu-header {
  margin-bottom: 16px;
}
.menu-page .menu-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.menu-page .menu-header p {
  font-size: 16px;
  color: #6B7280;
}
.menu-page .service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-page .service-info {
  flex: 1;
  min-width: 0;
}
.menu-page .service-info .service-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.menu-page .service-info .service-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}
.menu-page .service-info .service-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  white-space: pre-line;
}
.menu-page .chevron-icon {
  width: 20px;
  height: 20px;
  color: #D1D5DB;
  flex-shrink: 0;
}

.detail-page .detail-hero {
  text-align: center;
  margin-bottom: 16px;
}
.detail-page .detail-hero .detail-icon {
  display: inline-flex;
  padding: 12px;
  border-radius: 24px;
  margin-bottom: 12px;
}
.detail-page .detail-hero h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}
.detail-page .detail-hero p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  padding: 0 8px;
}
.detail-page .detail-sections {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
}
.detail-page .section-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.detail-page .section-title.text-red {
  color: #DC2626;
}
.detail-page .section-title.text-blue {
  color: #2563EB;
}
.detail-page .section-title.text-green {
  color: #16A34A;
}
.detail-page .feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-page .feature-list li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.detail-page .feature-list li .feature-icon {
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-page .price-highlight {
  text-align: center;
  padding: 16px;
}
.detail-page .price-highlight .price {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.detail-page .price-highlight .price-desc {
  font-size: 14px;
  color: #4B5563;
}

.terms-page .terms-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
.terms-page .terms-scroll-container {
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  max-height: 50vh;
  overflow-y: auto;
}
.terms-page .scroll-notice {
  margin-bottom: 16px;
  padding: 12px;
  background-color: #EFF6FF;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  font-size: 14px;
  color: #2563EB;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-content {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif !important;
  line-height: 1.6 !important;
  color: #1F2937 !important;
}
.terms-content * {
  font-family: inherit !important;
}
.terms-content h1 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 16px !important;
  margin-top: 16px !important;
  text-align: center !important;
}
.terms-content h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1F2937 !important;
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}
.terms-content p {
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: #374151 !important;
  margin-bottom: 8px !important;
}
.terms-content span {
  font-size: 12px !important;
}
.terms-content ol {
  margin-bottom: 12px;
  list-style-position: outside !important;
  margin-left: 0 !important;
  padding-left: 2.5rem !important;
  counter-reset: none !important;
}
.terms-content ol li::before {
  content: none !important;
  display: none !important;
}
.terms-content > div > ol, .terms-content h4 + p + ol, .terms-content h4 + ol {
  list-style-type: decimal !important;
  padding-left: 2rem !important;
}
.terms-content ol ol {
  list-style-type: upper-alpha !important;
  padding-left: 2.5rem !important;
  margin-top: 8px;
  margin-bottom: 8px;
}
.terms-content ol ol ol {
  list-style-type: lower-alpha !important;
  padding-left: 2.5rem !important;
  margin-top: 8px;
  margin-bottom: 8px;
}
.terms-content ol ol ol ol {
  list-style-type: lower-roman !important;
  padding-left: 2.5rem !important;
  margin-top: 8px;
  margin-bottom: 8px;
}
.terms-content ul {
  margin-bottom: 12px;
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin-left: 1.5rem !important;
  padding-left: 0.5rem !important;
}
.terms-content li {
  font-size: 12px !important;
  color: #374151 !important;
  line-height: 1.6 !important;
  padding-left: 0.75rem !important;
  margin-bottom: 8px !important;
  display: list-item !important;
}
.terms-content li > ol, .terms-content li > ul {
  margin-top: 8px;
}
.terms-content hr {
  border: none;
  border-top: 1px solid #D1D5DB;
  margin: 16px 0;
}
.terms-content ul.numbering-list {
  list-style: none !important;
  counter-reset: item;
  padding-left: 2rem;
}
.terms-content ul.numbering-list > li {
  counter-increment: item;
  position: relative;
  padding-left: 0.75rem;
  list-style: none !important;
}
.terms-content ul.numbering-list > li::before {
  content: counter(item) ". " !important;
  position: absolute;
  left: -2rem;
  display: inline-block !important;
}
.terms-content ul.numbering-list ul {
  list-style: none !important;
  counter-reset: subitem;
  padding-left: 2.5rem;
}
.terms-content ul.numbering-list ul > li {
  counter-increment: subitem;
  position: relative;
  list-style: none !important;
}
.terms-content ul.numbering-list ul > li::before {
  content: counter(subitem, upper-alpha) ". " !important;
  position: absolute;
  left: -2.5rem;
  display: inline-block !important;
}
.terms-content .c0, .terms-content .c1, .terms-content .c4, .terms-content .c6, .terms-content .c9, .terms-content .c14 {
  all: unset !important;
  font-size: 12px !important;
  color: #374151 !important;
  line-height: 1.6 !important;
  display: list-item !important;
  font-family: inherit !important;
}

.additional-info-page .info-banner {
  padding: 16px 20px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.additional-info-page .info-banner .banner-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}
.additional-info-page .info-banner .banner-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}
.additional-info-page .step-progress {
  margin-bottom: 24px;
}
.additional-info-page .step-progress .step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.additional-info-page .step-progress .step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.additional-info-page .step-progress .step-indicator .step-back {
  padding: 4px;
  margin-left: -4px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}
.additional-info-page .step-progress .step-indicator .step-back:hover {
  background-color: #F3F4F6;
}
.additional-info-page .step-progress .step-indicator .step-back svg {
  width: 16px;
  height: 16px;
  color: #4B5563;
}
.additional-info-page .step-progress .step-indicator .step-text {
  font-size: 14px;
  font-weight: 700;
  color: #3182F6;
}
.additional-info-page .step-progress .skip-link {
  font-size: 14px;
  color: #6B7280;
  cursor: pointer;
  background: none;
  border: none;
}
.additional-info-page .step-progress .skip-link:hover {
  color: #374151;
}
.additional-info-page .step-progress .progress-bar {
  width: 100%;
  height: 4px;
  background-color: #E5E7EB;
  border-radius: 2px;
  overflow: hidden;
}
.additional-info-page .step-progress .progress-bar .progress-fill {
  height: 100%;
  background-color: #3182F6;
  transition: width 0.3s ease;
}
.additional-info-page .question-section {
  padding-bottom: 16px;
}
.additional-info-page .question-section .question-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.3;
}
.additional-info-page .question-section .helper-text {
  font-size: 14px;
  color: #6B7280;
  margin-top: 8px;
}
.additional-info-page .email-warning {
  margin-top: 12px;
  padding: 12px;
  background-color: #FEFCE8;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  font-size: 14px;
  color: #A16207;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}
.success-page .success-icon {
  width: 80px;
  height: 80px;
  background-color: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-page .success-icon svg {
  width: 40px;
  height: 40px;
  color: #3182F6;
  stroke-width: 3;
}
.success-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.success-page p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  padding: 0 8px;
}
