.product-list {
    list-style: none; /* Removes the default bullets */
    padding-left: 0;
}
.product-list li::before {
    content: "\2022"; /* Unicode for a bullet point */
    font-size: 1.2em;
    margin-right: 10px;
    list-style:none;
}
.product-list li {
    list-style: none;
}
  .features .col-lg-12 {
    background-color:#2f2e5c; /* Background color of the section */
    color: white; /* White text color for contrast */
    padding: 30px;
    position: relative;
    z-index: 1;
    
}

/* Create a row to split the content into two columns */
.row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Left side table */
.table-container {
    flex: 1;
    padding-right: 20px;
    margin-top: 10%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 12px;
    text-align: left;
}

.list-container {
    flex: 1;
    padding-left: 20px;
    list-style: none;
}

ul {
    padding-left: 20px;
    list-style-type: none;
}

ul li {
    
    list-style: none;
}

hr{
    color: #2aabdf;
    border-width: 5px;
}
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2f2e5c; /* Blue background */
    background-color:#f16325 ;
    color:white; /* White text */
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
    width:40%;
  }
  
  .cta-btn:hover {
    background-color:transparent; /* Darker blue on hover */
    transform: translateY(-3px); /* Slight lift effect */
    color:#2f2e5c;
  }
  .cta-btn:active {
    background-color:#2f2e5c; /* Even darker blue when clicked */
    transform: translateY(1px); /* Button press effect */
  }
  
  .cta-btn.feature:hover{
    background-color:transparent; /* Darker blue on hover */
    transform: translateY(-3px); /* Slight lift effect */
    color:white;
  }
  
  .cta-btn:focus {
    outline: none; /* Remove default outline when clicked */
  }
  
  /* li tab style */
  .nav-pills .nav-link {
    border-radius: 5px;
    margin-right: 5px;
    color: rgb(201, 211, 223);
    list-style-type: none;
}
.nav-pills .nav-link.active {
    background-color:#f16325;
}

.white-list li::before {
    color: white;
}

.cta-btn-events {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2f2e5c; /* Blue background */
    color: #2f2e5c; /* White text */
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
    width:40%;
    align-items: center;
  }
  
  .cta-btn-events:hover {
    background-color: #010c18; /* Darker blue on hover */
    transform: translateY(-3px); /* Slight lift effect */
  }
  
  .cta-btn-events:active {
    background-color:#2f2e5c; /* Even darker blue when clicked */
    transform: translateY(1px); /* Button press effect */
  }
  
  .cta-btn-events:focus {
    outline: none; /* Remove default outline when clicked */
  }
  