/* --- Final Polished Federal Cases & Appeals Section CSS --- */

/* The main container */
#federal-cases-appeals-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #1a1a1a;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; /* Ensure this font is loaded in your <head> */
}

/* The inner box with the gold border */
#federal-cases-appeals-section .content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  border: 2px solid #ffd700;
  border-radius: 8px;
  text-align: center;
}

/* The main title */
#federal-cases-appeals-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  color: #ffd700;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtitle under the main H1 */
#federal-cases-appeals-section .subtitle {
  font-size: 24px;
  color: #eeeeee;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  margin-bottom: 32px;
}

/* Main section headings */
#federal-cases-appeals-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #ffd700;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Advantage list subheadings */
#federal-cases-appeals-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #ffd700;
  font-weight: 700;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-left: 10px;
}

/* All paragraph text */
#federal-cases-appeals-section p {
  font-size: 20px;
  line-height: 1.7;
  color: #eeeeee;
  font-weight: 400;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  text-align: left;
}

/* The divider style */
#federal-cases-appeals-section hr {
  border: 0;
  height: 1px;
  background-color: #ffd700;
  opacity: 0.4;
  width: 60%;
  margin: 60px auto;
}

/* Specific list for the "Advantage" section */
#federal-cases-appeals-section .advantage-list {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  #federal-cases-appeals-section h1 { font-size: 35px; }
  #federal-cases-appeals-section h2 { font-size: 29px; }
  #federal-cases-appeals-section h3, #federal-cases-appeals-section .subtitle { font-size: 22px; }
  #federal-cases-appeals-section p { font-size: 19px; }
  #federal-cases-appeals-section h3 { padding-left: 0; }
}