/* 🔹 Disclaimer Section Styles */
.pricing-disclaimer {
    list-style: none; /* Remove default bullet points */
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    color: white;
    font-size: 10px;
    border-radius: 8px; /* Rounded corners */
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 🔹 Individual List Item */
.pricing-disclaimer li {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 8px; /* Space between icon and text */
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* 🔹 Last Item - Remove Border */
.pricing-disclaimer li:last-child {
    border-bottom: none;
}

/* 🔹 Icons for Each List Item */
.pricing-disclaimer li::before {
    content: "✔"; /* Default checkmark */
    font-weight: bold;
    font-size: 14px;
    color: #FFD700; /* Gold color for icons */
    display: inline-block;
    width: 16px;
}

/* 🔹 Special Icon for 'Category' */
.pricing-disclaimer li:first-child::before {
    content: "📌"; /* Pushpin icon */
    color: #FFA500; /* Orange */
}
