/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #050509;
  color: #ffffff;
  padding: 30px 20px 60px;
  line-height: 1.6;
}

/* LAYOUT */
.wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER */
header {
  margin-bottom: 40px;
  text-align: left;
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

header p {
  font-size: 1.05rem;
  color: #d0d0d0;
}

/* SECTIONS */
section {
  margin-bottom: 32px;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffd54a;
}

section p,
section li {
  font-size: 1.02rem;
  color: #e5e5e5;
}

ul {
  margin-left: 20px;
  margin-top: 8px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: #ffd54a;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  margin-right: 10px;
  margin-top: 14px;
}

.btn:hover {
  background: #f0c233;
}

/* BACK LINK */
.back {
  display: inline-block;
  margin-bottom: 20px;
  color: #ffd54a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.back:hover {
  text-decoration: underline;
}

/* SMALL TEXT */
.small {
  font-size: 0.9rem;
  color: #b5b5b5;
}
