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

body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* Background variations */
.bg-light-gray {
  background-color: #f8f9fa;
}

.bg-white {
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.return-button {
  color: #333;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-block;
  margin-bottom: 48px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.return-button:hover {
  color: #666;
  border-bottom-color: #666;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
}

main {
  padding: 80px 0 120px;
}

.page-header {
  text-align: center;
  margin-bottom: 80px;
}

.page-subtitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Title size variations */
.page-title.medium {
  font-size: 64px;
}

.page-title.large {
  font-size: 100px;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 56px;
  padding-bottom: 24px;
}

.content-section:last-child {
  margin-bottom: 0;
}

.content-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 24px;
  margin-top: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  margin-top: 32px;
  line-height: 1.4;
}

.content-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

.content-section li {
  color: #555;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.content-section li::before {
  content: "•";
  color: #999;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
}

.content-section li:last-child {
  margin-bottom: 0;
}

.content-section strong {
  color: #333;
  font-weight: 600;
}

.content-section a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.content-section a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .page-title.medium {
    font-size: 48px;
  }

  .page-title.large {
    font-size: 72px;
  }

  .container {
    padding: 0 20px;
  }

  main {
    padding: 60px 0 80px;
  }

  .page-header {
    margin-bottom: 60px;
  }

  .content-section {
    margin-bottom: 48px;
  }

  .content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .content-section h3 {
    font-size: 18px;
    margin-bottom: 14px;
    margin-top: 24px;
  }

  .return-button {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .page-title.medium {
    font-size: 36px;
  }

  .page-title.large {
    font-size: 56px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section li {
    padding-left: 20px;
  }
}
