.Consumers {
    max-width: 800px;
    margin: 0 auto;
}

.Consumers-heading {
    font-size: 24px;
    font-weight: 900;
    color: #252525;
    margin-bottom: 20px;
}

.Category {
    background-color: #f9f9f9;
    border: 2px solid #252525;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.Category:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.Category p {
    font-size: 16px;
    font-weight: 700;
    color: #007BFF;
    margin-bottom: 10px;
}

.Category ul {
    list-style-type: none;
    padding: 0;
}

.Category ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.Category ul li::before {
    content: "✔";
    color: #007BFF;
    position: absolute;
    left: 0;
}