body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.logo {
  width: 220px; /* Reduced to 10% of original 180px */
  height: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: #d4af37; /* Gold accent color */
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

h1, h2, h3 {
  color: #d4af37; /* Gold accent color */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.service-card {
  background-color: #111111;
  padding: 20px;
  border-radius: 5px;
  border-left: 3px solid #d4af37;
}

.cta-button {
  background-color: #d4af37;
  color: #000000;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.cta-button:hover {
  background-color: #ffffff;
}

footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9em;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.testimonials {
  background-color: #111111;
  padding: 30px;
  border-radius: 5px;
  margin: 40px 0;
  font-style: italic;
}

/* Shared styles for law/info pages */
.law-section {
  background-color: #111111;
  padding: 25px;
  margin: 20px 0;
  border-radius: 5px;
  border-left: 3px solid #d4af37;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.statistic-card {
  background-color: #111111;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.statistic-number {
  font-size: 2.5em;
  color: #d4af37;
  font-weight: bold;
  margin: 10px 0;
}

.back-button {
  margin-top: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  background-color: #111111;
  color: #d4af37;
}

.citations {
  margin-top: 40px;
  font-size: 0.9em;
  color: #d4af37;
}

.citation {
  margin-bottom: 10px;
}

/* Phone and email links styling */
a[href^="tel:"],
a[href^="mailto:"] {
  color: #d4af37; /* Gold color matching the theme */
  text-decoration: none;
  transition: color 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  color: #f5d76e; /* Lighter gold for hover state */
  text-decoration: underline;
}

/* General link styling for content areas */
.contact-info a,
.law-section a,
section a:not(.cta-button) {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover,
.law-section a:hover,
section a:not(.cta-button):hover {
  color: #f5d76e;
  text-decoration: underline;
}

/* Additional styles needed for contact page */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
}

.contact-info-section {
  flex: 1;
  min-width: 300px;
  background-color: #111111;
  padding: 30px;
  border-radius: 5px;
  border-left: 3px solid #d4af37;
}

.map-section {
  flex: 2;
  min-width: 300px;
  height: 500px;
  border-radius: 5px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  margin-top: 40px;
  background-color: #111111;
  padding: 30px;
  border-radius: 5px;
  border-left: 3px solid #d4af37;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #d4af37;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #111;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-button {
  background-color: #d4af37;
  color: #000000;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #ffffff;
}

.coverage-area {
  margin-top: 40px;
  text-align: center;
  background-color: #111111;
  padding: 30px;
  border-radius: 5px;
  border-left: 3px solid #d4af37;
}

.coverage-area h2 {
  margin-bottom: 20px;
}

.coverage-area p {
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  nav ul {
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .map-section {
    height: 350px;
  }
  
  .statistics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .logo {
    width: 180px;
  }
  
  nav ul {
    gap: 10px;
  }
  
  nav a {
    font-size: 0.9em;
  }
}
/* Add these to your styles.css file */

/* Custom county map styles */
.county-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Counties list styling */
.counties-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.state-counties {
    background-color: #111111;
    padding: 20px;
    border-radius: 5px;
    min-width: 250px;
}

.state-counties h3 {
    margin-bottom: 15px;
    text-align: center;
}

.state-counties ul {
    list-style: none;
    padding: 0;
}

.state-counties li {
    padding: 5px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.state-counties li:last-child {
    border-bottom: none;
}