* {
  box-sizing: border-box;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  max-width: 800px;
}

.header h3 {
  color: #ff9e40;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.header p {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 30px;
}

.contact-info p {
  font-size: 16px;
  color: #888;
  margin-bottom: 5px;
}

.contact-info a {
  color: #ff9e40;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.saffron-accent {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #d32f2f, #ff9e40);
  margin: 40px auto;
  border-radius: 2px;
}
