* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "M PLUS 1p", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: #000;
  background: #fff;
}

a {
  color: #000;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background: #fff;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #d7effe;
  font-size: 20px;
}

.menu-button {
  display: flex;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.menu-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.brand-mark {
  display: flex;
  align-items: center;
}

.app-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.login-link {
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.side-panel {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 100;
}

.side-panel-list {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
}

.side-panel-brand {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #d7effe;
}

.side-panel-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}

.side-panel-item span {
  margin-left: 10px;
  color: #666;
  font-size: 16px;
}

.side-panel-icon {
  width: 25px;
  height: 25px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 80;
}

body.sidebar-open .side-panel {
  left: 0;
}

body.sidebar-open .overlay {
  opacity: 1;
  visibility: visible;
}

.hero {
  width: 100%;
  height: 500px;
  background: url("public/image/mobile.jpg") no-repeat;
  background-size: 100% 100%;
}

.success-section {
  background: #eee;
  padding: 10px 0;
}

.section-title {
  color: #2d6d9c;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  padding: 10px 0;
  margin-bottom: 20px;
}

.testimonial-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonial {
  width: 50%;
  text-align: center;
}

.member-photo {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  object-fit: cover;
}

.testimonial-content {
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin: 10px auto 0;
  width: 100%;
  line-height: normal;
}

.testimonial-author {
  font-weight: 700;
  color: #222;
  font-size: 15px;
  margin-top: 15px;
}

.story-button {
  background-color: #60a6d2;
  margin: 40px auto 20px;
  padding: 10px;
  width: 200px;
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}

.story-button a {
  color: #000;
}

.content-section {
  width: 90%;
  margin: 40px auto;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
}

.content-copy {
  margin: 15px 0;
  font-size: 15px;
  line-height: normal;
}

.site-footer {
  background-color: #d7effe;
  padding: 30px 5%;
  width: 100%;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 15px;
  background: #d7effe;
  font-size: 20px;
}

.footer-link {
  width: 100%;
  font-size: 15px;
  margin-top: 25px;
  color: #000;
}

.article-page a {
  color: #000;
}

.simple-content {
  width: 95%;
  margin: 20px auto;
}

.simple-content-title {
  font-size: 20px;
  font-weight: 700;
}

.simple-content-copy {
  margin: 10px 0;
  font-size: 16px;
  line-height: normal;
}

.simple-content .underlined-link {
  text-align: center;
  text-decoration: underline !important;
}

.contact-card {
  width: 90%;
  margin: 30px auto;
  border-radius: 0.5rem;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.4);
}

.contact-card-inner {
  width: 90%;
  margin: auto;
  padding: 30px 0;
}

.contact-title {
  font-size: 30px;
}

.contact-muted {
  font-size: 16px;
  color: #797c7e;
}

.contact-button {
  background-color: #60a6d2;
  padding: 10px;
  width: 200px;
  border-radius: 10px;
  font-size: 15px;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

.contact-button a {
  color: #fff;
}

.signup-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #70bb46 !important;
  padding: 10px 0;
}

.signup-copy {
  color: #fff;
  margin-left: 10px;
}

.signup-copy p:first-child {
  font-size: 20px;
}

.signup-copy p:nth-child(2) {
  font-size: 14px;
}

.signup-copy a {
  color: #fff;
}

.story-box {
  width: 95%;
  margin: auto;
  border-bottom: 1px solid #999;
  padding: 20px 0;
  color: #666;
}

.story-box > p:first-child {
  font-size: 18px;
}

.story-image {
  text-align: center;
  padding: 20px 0;
}

.story-image img {
  width: 240px;
  height: 240px;
  border-radius: 100%;
  object-fit: cover;
}

.story-author {
  margin-bottom: 20px;
}

.safety-title {
  font-size: 22px;
  color: #666;
  padding: 10px 0;
  width: 95%;
  margin: auto;
}

.safety-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 2.5%;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  overflow: hidden;
}

.safety-row p {
  flex: 1;
  font-size: 16px;
  color: #666;
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.safety-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  transition: transform 0.2s ease;
}

.safety-text {
  background-color: #efefef;
  padding: 10px 0;
  color: #666;
  display: none;
}

.safety-text p,
.safety-text ul {
  width: 95%;
  margin: auto;
}

.safety-text p {
  padding: 8px 0;
}

.safety-text li {
  text-indent: 1em;
}

.policy-box {
  width: 95%;
  margin: auto;
  padding: 20px 0;
}

.policy-box p {
  font-size: 16px;
  color: #666;
  padding: 7px 0;
}

.policy-box .policy-title {
  font-size: 25px !important;
  padding: 10px 0;
}

.policy-box a {
  color: blue;
  text-decoration: underline;
}

.policy-box li {
  text-indent: 1em;
  font-size: 16px;
  color: #666;
  padding: 7px 0;
}
