.about-wrap {
    max-width: none !important;
    width: 100% !important;
}

.w2pshop-display-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    gap: 10px;
    padding: 10px;
}
.w2pshop-display-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
    box-sizing: border-box;
    max-width: 300px;
    width: 100%;
}

.w2pshop-display-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Description styling */
.w2pshop-display-card-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.w2pshop-display-card-button {
    margin-left: auto;
    text-align: right;
}

.w2pshop-display-card-button button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.card-button button:hover {
    background-color: #0056b3;
}