
      /* Estilos personalizados para la página de políticas */
      .policy-section {
        padding: 80px 0;
        background: #f8f9fa;
      }
      .btn-primary:hover{
        color: white !important;
      }
      .btn-primary:active{
        color: white !important;
        background:#c82333 !important;
      }
      .policy-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .policy-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1e293b;
        position: relative;
        display: inline-block;
      }

      .policy-header h1::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #ffc107, #ffc107);
        border-radius: 2px;
      }

      .policy-container {
        max-width: 1000px;
        margin: 0 auto;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 40px;
        border: 1px solid #e2e8f0;
      }
      /*Elimanr policy-nav para sacar el efecto de del navbar fixed*/
      .policy-nav {
        top: 5px;
        background: #f8fafc;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }

      .policy-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .policy-nav li {
        margin-bottom: 10px;
      }

      .policy-nav a {
        color: rgb(9, 9, 9);
        text-decoration: none;
        display: block;
        padding: 8px 15px;
        border-radius: 4px;
        transition: all 0.3s;
      }

      .policy-nav a:hover,
      .policy-nav a.active {
        background: #ffc107;
        color: white;
      }

      .policy-section-title {
        margin-top: 40px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #3a86ff;
        font-size: 1.8rem;
        font-weight: 600;
        color: #1e293b;
        position: relative;
      }

      .policy-section-title::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: linear-gradient(45deg, #3a86ff, #8338ec);
      }

      .policy-content {
        color: #495057;
        line-height: 1.7;
      }

      .policy-content h3 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
        color: #1e293b;
      }

      .policy-content p {
        margin-bottom: 15px;
      }

      .policy-content ul {
        padding-left: 25px;
        margin-bottom: 20px;
      }

      .policy-content li {
        margin-bottom: 8px;
        position: relative;
      }

      .policy-content li::before {
        content: "•";
        color: #3a86ff;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
      }

      .effective-date {
        background: #f1f8ff;
        padding: 15px;
        border-radius: 6px;
        margin: 30px 0;
        border-left: 4px solid #c82333;
      }

      .highlight-box {
        background: #fff9db;
        border-left: 4px solid #ffd43b;
        padding: 15px;
        margin: 20px 0;
        border-radius: 0 4px 4px 0;
      }

      .contact-policy {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        margin-top: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
      }

      .contact-policy h3 {
        margin-bottom: 20px;
        color: #1e293b;
      }

      .contact-icon {
        font-size: 2.5rem;
        color: #c82333;
        margin-bottom: 20px;
      }

      /* Responsive */
      @media (max-width: 991px) {
        .policy-container {
          padding: 25px;
        }

        .policy-nav {
          position: static;
          margin-bottom: 30px;
        }
      }

      @media (max-width: 767px) {
        .policy-header h1 {
          font-size: 2rem;
        }

        .policy-section-title {
          font-size: 1.5rem;
        }

        .policy-content h3 {
          font-size: 1.2rem;
        }
      }
