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

body {
  margin: 0;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

img {
  display: block;
  border: 0;
}

.user-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.user-modal.active {
  display: block;
}

.user-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.user-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 0;
  padding: 40px 60px 80px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  border-left: 4px solid #268C97;
  border-right: 4px solid #268C97;
}

.user-modal-close {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #268C97;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: white;
  padding: 12px 40px;
  border-radius: 25px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
}

.user-modal-close:hover {
  background-color: #1a6670;
}

.user-modal-body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #212121;
  line-height: 1.5;
  padding-bottom: 20px;
}

.user-modal-body h2 {
  color: #268C97;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.user-modal-body h3 {
  color: #00A84B;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.user-modal-body p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.5;
}

.user-modal-body .highlight {
  color: #268C97;
  font-weight: 700;
}

@media (max-width: 767px) {
  .user-modal-content {
    width: 90%;
    padding: 30px 20px 70px;
    max-height: 85vh;
  }

  .user-modal-close {
    bottom: 15px;
    padding: 10px 30px;
    font-size: 13px;
  }

  .user-modal-body h2 {
    font-size: 16px;
  }

  .user-modal-body h3 {
    font-size: 14px;
  }

  .user-modal-body p {
    font-size: 12px;
  }
}
