/* ===== Additional Page Styles ===== */

/* Page Headers */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--government-blue);
}

.page-header h1 {
  color: var(--government-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: #666;
  font-size: 1.2rem;
  margin: 0;
}

/* Content Sections */
.content-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
  color: var(--government-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}

.content-section h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
}

.content-section h4 {
  color: #444;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
}

.content-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Contact Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--government-blue);
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
}

.btn-primary {
  background: var(--government-blue);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #1e3a8a;
}

/* Contact Info Cards */
.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--government-blue);
}

.contact-info h4 {
  color: var(--government-blue);
  margin-bottom: 0.75rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Office Cards */
.office-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
}

.office-card h4 {
  color: var(--government-blue);
  margin-bottom: 0.5rem;
}

.office-card p {
  margin-bottom: 0;
}

/* Sitemap Styles */
.sitemap-list ul {
  list-style: none;
  padding: 0;
}

.sitemap-list > ul > li {
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.sitemap-list a {
  color: var(--government-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-list a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.sitemap-list ul ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
}

.sitemap-list ul ul li {
  margin-bottom: 0.25rem;
  padding: 0.25rem 0;
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .content-section h2 {
    font-size: 1.3rem;
  }
  
  .contact-info,
  .office-card {
    padding: 1rem;
  }
  
  .sitemap-list ul ul {
    margin-left: 1rem;
  }
}

/* Print Styles */
@media print {
  .page-header,
  .content-section {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  .btn-primary {
    display: none;
  }
}
