/* Practice Areas Page Styles */

main {
  margin-top: 40px;
  padding-top: 70px;
}

.main-content.page {
  background-color: white;
  padding: 0 20px 0px 20px;
  color: #2c3e50;
  min-height: calc(100vh - 200px);
}

.practice-areas-page {
  background-color: white;
  padding: 0 20px 0px 20px;
  color: #2c3e50;
  min-height: calc(100vh - 200px);
}

.practice-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Times New Roman', serif;
}

.practice-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 60px !important;
}

.practice-main-title {
  color: #2c3e50;
  font-size: 2.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.practice-subtitle {
  color: #7f8c8d;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.practice-divider {
  width: 80px;
  height: 4px;
  background-color: #3498db;
  border: none;
  margin: 0 auto 40px;
}

.columns-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.column {
  flex: 1;
  max-width: none;
  padding: 30px;
  border-radius: 8px;
  background-color: #f8f9fa;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.column:hover {
  transform: translateY(-5px);
}

.column h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #3498db;
}

.column-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #3498db;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column li {
  color: #2c3e50;
  margin-bottom: 12px;
  font-size: 0.95rem;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.column li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #2c3e50;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-header h1 {
  color: #2c3e50;
  font-size: 2.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-header p {
  color: #7f8c8d;
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.page-header .subtitle {
  color: #7f8c8d;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.page-header hr {
  width: 80px;
  height: 4px;
  background-color: #3498db;
  border: none;
  margin: 0 auto 40px;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.cta-section h2 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-section p {
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 25px;
}

.cta-section a {
  color:  #3498db;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-section a:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .main-content.page,
  .practice-areas-page {
    padding: 40px 20px;
  }

  .practice-main-title {
    font-size: 1.6rem;
  }

  .practice-subtitle {
    font-size: 1rem;
  }

  .columns-container {
    flex-direction: column;
    gap: 30px;
  }

  .column {
    max-width: 100%;
  }

  .column h2,
  .column-title {
    font-size: 1.1rem;
  }

  .column li {
    font-size: 0.9rem;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }
}
