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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.authorfreely-pause-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.authorfreely-pause-logo {
  margin-bottom: 40px;
}

.authorfreely-pause-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.authorfreely-pause-content {
  text-align: initial;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}

.authorfreely-pause-content p {
  margin-bottom: 20px;
}

.authorfreely-pause-content strong {
  font-weight: 600;
}

.authorfreely-pause-content ul {
  text-align: left;
  margin: 20px 0;
  padding-left: 30px;
}

.authorfreely-pause-content li {
  margin-bottom: 10px;
}

.authorfreely-pause-email {
  color: #A6388C;
  text-decoration: none;
}

.authorfreely-pause-email:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .authorfreely-pause-page {
    padding: 20px 15px;
  }

  .authorfreely-pause-logo img {
    max-width: 250px;
  }

  .authorfreely-pause-content {
    font-size: 14px;
  }
}

