/* --- Final Polished Criminal Defense Section CSS (Poppins Version) --- */

/* The main container with the dark background and new base font */
#criminal-defense-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #1a1a1a;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; /* <-- UPDATED to Poppins */
}

/* The inner box with more padding */
#criminal-defense-section .content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  border: 2px solid #ffd700;
  border-radius: 8px;
  text-align: center;
}

/* The main title with new font and shadow */
#criminal-defense-section h1 {
  font-family: 'Poppins', sans-serif; /* <-- UPDATED */
  font-size: 48px;
  color: #ffd700;
  font-weight: 900; /* Bolder weight */
  margin-top: 0;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtitle under the main H1 */
#criminal-defense-section .subtitle {
  font-size: 24px;
  color: #eeeeee;
  font-style: italic;
  font-family: 'Poppins', sans-serif; /* <-- UPDATED */
  margin-top: 0;
  margin-bottom: 32px;
}

/* Main section headings */
#criminal-defense-section h2 {
  font-family: 'Poppins', sans-serif; /* <-- UPDATED */
  font-size: 32px;
  color: #ffd700;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* Advantage list subheadings */
#criminal-defense-section h3 {
  font-family: 'Poppins', sans-serif; /* <-- UPDATED */
  font-size: 24px;
  color: #ffd700;
  font-weight: 700;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 8px;
  padding-left: 150px;
}

/* All paragraph text */
#criminal-defense-section p {
  font-size: 20px;
  line-height: 1.7;
  color: #eeeeee;
  font-weight: 400; /* Regular weight */
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  text-align: left;
}

/* The divider style */
#criminal-defense-section hr {
  border: 0;
  height: 1px;
  background-color: #ffd700;
  opacity: 0.4;
  width: 60%;
  margin: 60px auto;
}

/* List of roles */
#criminal-defense-section .roles-list {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin: 24px auto;
  text-align: left;
}

#criminal-defense-section .roles-list li {
  font-size: 20px;
  color: #eeeeee;
  margin-bottom: 16px;
  line-height: 1.7;
}

#criminal-defense-section .roles-list li strong {
  color: #ffd700;
  font-weight: 700;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  #criminal-defense-section h1 {
    font-size: 27px;
    padding-left: 0px; 
    text-align: center; 
  }
  #criminal-defense-section h2 {
    font-size: 22px;
    padding-left: 0px; 
     text-align: center; 
  }
  #criminal-defense-section h3,
  #criminal-defense-section .subtitle {
    font-size: 22px;
     padding-left: 0px; 
     text-align: center; 
    
 
 
  }
  #criminal-defense-section p,
  #criminal-defense-section .roles-list li {
    font-size: 18px;
  }

  #criminal-defense-section .content-wrapper {
    padding: 55px 20px; /* aduct up and down and left and right padding */


  }



}