/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  padding: 0 20px 20px;
}

/* Top Navigation */
.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  padding: 15px 25px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: white;
  color: #b8860b;
}

/* Header */
header {
  text-align: center;
  padding: 50px 0 40px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
}

/* Sections */
section {
  margin: 40px auto;
  max-width: 800px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section h2 {
  color: #b8860b;
  margin-bottom: 10px;
}

/* List */
ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Button Section */
.doc-link {
  text-align: center;
}

.button {
  display: inline-block;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.button:hover {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #777;
}