/* Container for the section */
.asesoria-section {
    padding: 80px 20px;
    background-color: #0d0d0d;
    color: white;
    text-align: center;
  }
  
  /* Inner max-width container */
  .asesoria-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }
  
  /* Title styling */
  .asesoria-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Intro paragraph */
  .asesoria-section .intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
    text-align: center;
  }
  
  /* Key service points list */
  .asesoria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
  }
  
  .asesoria-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1rem;
  }
  
  .asesoria-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    background-color: #a259ff;
    transform: rotate(45deg);
    border-radius: 2px;
  }
  
  /* Call to action */
  .call-to-action {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
  }
  
  /* Disclaimer box */
  .disclaimer {
    background-color: #111;
    padding: 25px;
    border-left: 4px solid #a259ff;
    font-size: 0.95rem;
    color: #bbb;
    border-radius: 6px;
  }
  
  .disclaimer h4 {
    margin-bottom: 10px;
    color: #a259ff;
    font-size: 1.05rem;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .asesoria-section {
      padding: 60px 15px;
    }
  
    .asesoria-section h1 {
      font-size: 1.6rem;
    }
  
    .asesoria-section .intro,
    .call-to-action,
    .asesoria-list li {
      font-size: 1rem;
    }
  }
  