body {
  background-color: #f4f6f8;
  color: #2f2f2f;
  line-height: 1.8;
}

.section {
  margin-top: 20px;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out;
}

.title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 14px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #1f2937;
}

.title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #5196ff;
  transform: translateX(-50%);
  border-radius: 2px;
}

.subtitle {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 4px solid #5196ff;
  color: #1f2937;
}

p {
  font-size: 1rem;
  color: #444;
  margin-top: 12px;
}

.has-text-right p {
  font-size: 0.9rem;
  color: #666;
}

.has-text-right time {
  position: relative;
  padding-bottom: 2px;
}

.has-text-right time::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #cbd5e1;
}

address {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  font-style: normal;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.ceo {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: #1f2937;
}

address::after {
  content: "";
  display: block;
  margin-top: 10px;
  margin-left: auto;
  width: 120px;
  height: 2px;
  background-color: #5196ff;
  border-radius: 2px;
}

#button {
  margin-top: 40px;
  margin-bottom: 10px;
}

#button .button {
  padding: 0.6em 2em;
  font-size: 0.95rem;
  border-radius: 9999px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 28px 20px;
  }

  .title {
    font-size: 1.7rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media print {
  body {
    background: #fff;
  }

  .container {
    box-shadow: none;
    padding: 0;
  }

  #button {
    display: none;
  }
}