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

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, #f8fafc, #e0f7fa);
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.warning-banner {
  background: linear-gradient(to right, #f8d7da, #ffcc00);
  border-left: 6px solid #dc3545;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.warning-icon svg {
  width: 32px;
  height: 32px;
  color: #dc3545;
}

.warning-text {
  margin-left: 15px;
}

.warning-title {
  font-size: 18px;
  font-weight: bold;
  color: #721c24;
}

.warning-banner p {
  color: #721c24;
  font-size: 16px;
}

.instructions {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 20px;
}

.step-content h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.screenshot {
  width: 100%;
  height: 900px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}

.highlight {
  background-color: #ffeb3b;
  padding: 2px 5px;
  border-radius: 4px;
}

.info-box {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 10px;
  margin-top: 10px;
}

.info-icon {
  width: 20px;
  height: 20px;
  color: #856404;
  margin-right: 10px;
}

.final-warning {
  background: linear-gradient(to right, #e53e3e, #c53030);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.final-warning h3 {
  font-size: 24px;
  font-weight: bold;
}

.final-warning p {
  font-size: 16px;
}

.final-warning .warning-icon {
  margin-bottom: 20px;
}
