/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f8f9fa;
  color: #1c1f23;
  line-height: 1.65;
}

/* Layout */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 4px solid #2f4f6f;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-name {
  font-weight: 700;
  font-size: 1.25rem;
}

.site-subtitle {
  display: block;
  font-size: 0.85rem;
  color: #555;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1c1f23;
  font-weight: 600;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
}

.menu-btn {
  background: #2f4f6f;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.menu-btn:hover {
  background: #1f3f5f;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border: 1px solid #dee2e6;
  border-radius: 2px;
  margin-top: 0.25rem;
}

.dropdown-content a {
  color: #1c1f23;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  margin-left: 0;
  font-weight: 600;
}

.dropdown-content a:hover {
  background-color: #f1f3f5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Notice */
.notice {
  background: #e9ecef;
  border-bottom: 1px solid #ced4da;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  background: #ffffff;
  padding: 3rem 0;
  border-bottom: 1px solid #dee2e6;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  padding: 0.6rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn.primary {
  background: #2f4f6f;
  color: #ffffff;
}

.btn.secondary {
  border: 2px solid #2f4f6f;
  color: #2f4f6f;
  margin-left: 0.75rem;
}

.btn.danger {
  background: #7a1f1f;
  color: #ffffff;
}

/* Content Sections */
.content {
  padding: 3rem 0;
  background: #ffffff;
  border-bottom: 1px solid #dee2e6;
}

.content.alt {
  background: #f1f3f5;
}

.content h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.bullet-list {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.steps {
  margin-left: 1.25rem;
}

.steps li {
  margin-bottom: 0.5rem;
}

.muted {
  color: #555;
  font-size: 0.9rem;
}

/* Search */
.search {
  padding: 3rem 0;
  background: #e9ecef;
}

.search-form {
  max-width: 520px;
}

.search-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.search-form input {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #adb5bd;
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 4px solid #2f4f6f;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #444;
}

.footer-links a {
  color: #444;
  text-decoration: none;
}
