.elementor-26460 .elementor-element.elementor-element-6f74fd10 .elementor-heading-title {
    display: none;
}

.bold-text {
    font-weight: bold;
}

/* General styling for the pricing column */
.pricing-column {
    position: relative; /* Ensure the badge is positioned relative to the column */
    padding-top: 35px; /* Add space to accommodate the badge height and extra 25px space */
}

/* Styling for the badge */
.pricing-column::before {
    content: "Security and USPs"; /* Text for the badge */
    position: absolute;
    top: 0; /* Position at the top */
    left: 0; /* Start from the left edge */
    width: 100%; /* Cover full width */
    background-color: #EC5800; /* Badge background color */
    color: white; /* Badge text color */
    padding: 10px 0; /* Padding for top and bottom */
    text-align: center; /* Center the text */
    font-size: 16px; /* Font size for the text */
    font-weight: bold; /* Make the text bold */
    border-top-left-radius: 12px; /* Top left border radius */
    border-top-right-radius: 12px; /* Top right border radius */
    z-index: 10; /* Ensure the badge is on top */
}

/* General table styling */
.custom-table {
    border-collapse: separate;
    width: 100%;
    border-spacing: 0;
    border-radius: 15px; /* Rounded corners for the table */
    overflow: hidden; /* Ensure rounded corners are visible */
    background-color: #f7f7f7; /* Light grey background for the entire table */
}

/* Style for all table cells */
.custom-table td,
.custom-table th {
    padding: 10px 15px; /* Increased horizontal padding */
    text-align: left;
    font-family: Arial, sans-serif;
    background-color: #f7f7f7; /* Light grey background */
}

/* Dark blue for the first column */
.custom-table td:nth-child(1),
.custom-table th:nth-child(1) {
    background-color: rgb(0, 36, 109); /* Dark blue background */
    color: white; /* White text for contrast */
}

/* Dark blue for the header row */
.custom-table th {
    background-color: rgb(0, 36, 109); /* Dark blue background */
    color: white; /* White text for contrast */
}

/* Remove table borders */
.custom-table td,
.custom-table th {
    border: none; /* Remove borders */
}

/* Optional: Add spacing between columns */
.custom-table td:not(:last-child) {
    border-right: 10px solid transparent; /* Space between columns */
}

/* Top row with padding */
.custom-table tr:first-child th {
    padding-top: 20px;
}

/* Bottom row with padding */
.custom-table tr:last-child td {
    padding-bottom: 20px;
}