/* styles for instructions page */
body {
  font-family: "Arial", sans-serif;
  background-color: #f4f7f6;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
}

h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.instruction-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instruction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.instruction-icon {
  font-size: 3rem;
  color: #1abc9c;
  margin-bottom: 1rem;
}

.instruction-card h3 {
  color: #34495e;
  margin-bottom: 0.5rem;
}

.instruction-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
}

.tips-section {
  margin-top: 3rem;
  padding: 2rem;
  background: #e8f6f3;
  border-radius: 8px;
}

.tips-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.tips-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tips-section li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tips-section li::before {
  content: "💡";
  font-size: 1.5rem;
}

.footer-links {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.footer-links a {
  color: #3498db;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}
