/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: #1a1d21; /* Deep Slate Background */
  color: #e4e6eb; /* Soft White Text */
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 40px 20px;
}

/* =========================================
   2. MAIN CONTAINER
   ========================================= */
.container {
  max-width: 900px;
  width: 100%;
  background-color: #212529; /* Card Surface */
  border-radius: 24px;
  padding: 50px;
  border: 1px solid #2f3336;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* Subtle hover effect for the whole document */
.container:hover {
  border-color: #3e4042;
}

/* =========================================
   3. HEADERS & SUBTITLES
   ========================================= */
.header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #2f3336;
}

h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.subtitle {
  color: #a29bfe; /* Lavender Accent */
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  color: #ffffff;
  margin-top: 45px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* Style for icons if you use FontAwesome */
h2 i {
  margin-right: 15px;
  color: #a29bfe;
}

/* ================= ========================
   4. CONTENT & LISTS
   ========================================= */
p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #b0b3b8; /* Dimmer text for better readability */
}

strong {
  color: #a29bfe;
  font-weight: 600;
}

ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 30px;
}

ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #e4e6eb;
}

/* Custom Lavender Bullet Points */
ul li::before {
  content: "•";
  color: #a29bfe;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* =========================================
   5. SPECIAL BOXES (Highlights & Notes)
   ========================================= */
.highlight {
  background: rgba(162, 155, 254, 0.05); /* Very subtle lavender tint */
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #a29bfe;
  margin: 30px 0;
  color: #e4e6eb;
}

.note {
  background: rgba(255, 184, 108, 0.1); /* Soft orange/gold tint */
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #ffb86c;
  margin: 20px 0;
  font-size: 0.95rem;
}

.note strong {
  color: #ffb86c;
}

.agreement-section {
  margin-top: 60px;
  padding: 30px;
  background: #1a1d21;
  border: 1px solid #2f3336;
  border-radius: 16px;
  text-align: center;
}

/* =========================================
   6. NAVIGATION & BUTTONS
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #212529;
  color: #a29bfe;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #2f3336;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #a29bfe;
  color: #1a1d21;
}

.footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #2f3336;
  font-size: 0.85rem;
  color: #71767b;
}

/* =========================================
   7. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  body {
    padding: 20px 10px;
  }
}
